Browse Source

Merge pull request #1735 from vector-im/feature/bma/pinLockGracePeriod0

Pin lock grace period set to 0
pull/1742/head
Benoit Marty 11 months ago committed by GitHub
parent
commit
f37c0f459e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      appconfig/src/main/kotlin/io/element/android/appconfig/LockScreenConfig.kt
  2. 1
      changelog.d/1732.misc

5
appconfig/src/main/kotlin/io/element/android/appconfig/LockScreenConfig.kt

@ -33,7 +33,7 @@ data class LockScreenConfig(
val isPinMandatory: Boolean, val isPinMandatory: Boolean,
/** /**
* Some PINs are blacklisted. * Some PINs are forbidden.
*/ */
val pinBlacklist: Set<String>, val pinBlacklist: Set<String>,
@ -56,6 +56,7 @@ data class LockScreenConfig(
* Authentication with strong methods (fingerprint, some face/iris unlock implementations) is supported. * Authentication with strong methods (fingerprint, some face/iris unlock implementations) is supported.
*/ */
val isStrongBiometricsEnabled: Boolean, val isStrongBiometricsEnabled: Boolean,
/** /**
* Authentication with weak methods (most face/iris unlock implementations) is supported. * Authentication with weak methods (most face/iris unlock implementations) is supported.
*/ */
@ -72,7 +73,7 @@ object LockScreenConfigModule {
pinBlacklist = setOf("0000", "1234"), pinBlacklist = setOf("0000", "1234"),
pinSize = 4, pinSize = 4,
maxPinCodeAttemptsBeforeLogout = 3, maxPinCodeAttemptsBeforeLogout = 3,
gracePeriod = 90.seconds, gracePeriod = 0.seconds,
isStrongBiometricsEnabled = true, isStrongBiometricsEnabled = true,
isWeakBiometricsEnabled = true, isWeakBiometricsEnabled = true,
) )

1
changelog.d/1732.misc

@ -0,0 +1 @@
Set lock grace period to 0.
Loading…
Cancel
Save