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

Pin lock grace period set to 0
This commit is contained in:
Benoit Marty 2023-11-03 17:24:29 +01:00 committed by GitHub
commit f4c5cc7b8d
2 changed files with 4 additions and 2 deletions

View file

@ -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 Normal file
View file

@ -0,0 +1 @@
Set lock grace period to 0.