Pin unlock : hides behind feature flag (disabled by default)
This commit is contained in:
parent
ea0963c0c8
commit
304ec0b740
7 changed files with 31 additions and 11 deletions
|
|
@ -49,4 +49,10 @@ enum class FeatureFlags(
|
|||
description = "Send and receive voice messages",
|
||||
defaultValue = false,
|
||||
),
|
||||
PinUnlock(
|
||||
key = "feature.pinunlock",
|
||||
title = "Pin unlock",
|
||||
description = "Allow user to lock/unlock the app with a pin code or biometrics",
|
||||
defaultValue = false,
|
||||
),
|
||||
}
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ class StaticFeatureFlagProvider @Inject constructor() :
|
|||
FeatureFlags.Polls -> true
|
||||
FeatureFlags.NotificationSettings -> true
|
||||
FeatureFlags.VoiceMessages -> false
|
||||
FeatureFlags.PinUnlock -> false
|
||||
}
|
||||
} else {
|
||||
false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue