PM-21641: Allow delete and restore logic to be remotely configured (#5194)

This commit is contained in:
David Perez
2025-05-14 14:23:21 -05:00
committed by GitHub
parent 7d6b6a5959
commit f1950600a1
2 changed files with 2 additions and 2 deletions

View File

@@ -201,7 +201,7 @@ sealed class FlagKey<out T : Any> {
data object RestrictCipherItemDeletion : FlagKey<Boolean>() {
override val keyName: String = "pm-15493-restrict-item-deletion-to-can-manage-permission"
override val defaultValue: Boolean = false
override val isRemotelyConfigured: Boolean = false
override val isRemotelyConfigured: Boolean = true
}
/**

View File

@@ -125,6 +125,7 @@ class FlagKeyTest {
FlagKey.SimpleLoginSelfHostAlias,
FlagKey.ChromeAutofill,
FlagKey.MobileErrorReporting,
FlagKey.RestrictCipherItemDeletion,
).all {
it.isRemotelyConfigured
},
@@ -134,7 +135,6 @@ class FlagKeyTest {
listOf(
FlagKey.FlightRecorder,
FlagKey.PreAuthSettings,
FlagKey.RestrictCipherItemDeletion,
).all {
!it.isRemotelyConfigured
},