Configure an "idle primary device reminder" interceptor

This commit is contained in:
Jon Chambers
2025-02-28 11:14:41 -05:00
committed by Jon Chambers
parent f7a3971c64
commit 8955e31a1e
5 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/*
* Copyright 2025 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.configuration;
import java.time.Duration;
public record IdlePrimaryDeviceReminderConfiguration(Duration minIdleDuration) {
}