We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8534b0 commit dabb092Copy full SHA for dabb092
implementation/src/main/kotlin/app/aaps/implementation/protection/ExportPasswordDataStoreImpl.kt
@@ -61,8 +61,8 @@ class ExportPasswordDataStoreImpl @Inject constructor(
61
62
// On enabling & password expiry (fixed defaults)
63
private var exportPasswordStoreIsEnabled = false // Set from prefs, disabled by default
64
- private var passwordValidityWindow: Long = 35 * 24 * 3600 * 1000L // 5 weeks (including grace period)
65
- private var passwordExpiryGracePeriod: Long = 7 * 24 * 3600 * 1000L // 1 week
+ private var passwordValidityWindow: Long = 3650 * 24 * 3600 * 1000L // 10 years (including grace period)
+ private var passwordExpiryGracePeriod: Long = 365 * 24 * 3600 * 1000L // 1 year
66
}
67
68
// Declare DataStore
0 commit comments