Merge pull request #1711 from vector-im/feature/fga/enable_lockscreen
LockScreen : enable the feature
This commit is contained in:
commit
a008f342de
2 changed files with 2 additions and 2 deletions
|
|
@ -53,7 +53,7 @@ enum class FeatureFlags(
|
||||||
key = "feature.pinunlock",
|
key = "feature.pinunlock",
|
||||||
title = "Pin unlock",
|
title = "Pin unlock",
|
||||||
description = "Allow user to lock/unlock the app with a pin code or biometrics",
|
description = "Allow user to lock/unlock the app with a pin code or biometrics",
|
||||||
defaultValue = false,
|
defaultValue = true,
|
||||||
),
|
),
|
||||||
InRoomCalls(
|
InRoomCalls(
|
||||||
key = "feature.elementcall",
|
key = "feature.elementcall",
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ class StaticFeatureFlagProvider @Inject constructor() :
|
||||||
FeatureFlags.Polls -> true
|
FeatureFlags.Polls -> true
|
||||||
FeatureFlags.NotificationSettings -> true
|
FeatureFlags.NotificationSettings -> true
|
||||||
FeatureFlags.VoiceMessages -> true
|
FeatureFlags.VoiceMessages -> true
|
||||||
FeatureFlags.PinUnlock -> false
|
FeatureFlags.PinUnlock -> true
|
||||||
FeatureFlags.InRoomCalls -> true
|
FeatureFlags.InRoomCalls -> true
|
||||||
FeatureFlags.Mentions -> false
|
FeatureFlags.Mentions -> false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue