mirror of
https://github.com/bitwarden/server.git
synced 2024-11-21 12:05:42 +01:00
[PM-11619] Replace cipher encryption feature flag with server-side flag (#4694)
This commit is contained in:
parent
fa5d6712c5
commit
ec2522de8b
@ -141,6 +141,7 @@ public static class FeatureFlagKeys
|
|||||||
public const string NotificationBarAddLoginImprovements = "notification-bar-add-login-improvements";
|
public const string NotificationBarAddLoginImprovements = "notification-bar-add-login-improvements";
|
||||||
public const string AC2476_DeprecateStripeSourcesAPI = "AC-2476-deprecate-stripe-sources-api";
|
public const string AC2476_DeprecateStripeSourcesAPI = "AC-2476-deprecate-stripe-sources-api";
|
||||||
public const string PersistPopupView = "persist-popup-view";
|
public const string PersistPopupView = "persist-popup-view";
|
||||||
|
public const string CipherKeyEncryption = "cipher-key-encryption";
|
||||||
public const string EnableNewCardCombinedExpiryAutofill = "enable-new-card-combined-expiry-autofill";
|
public const string EnableNewCardCombinedExpiryAutofill = "enable-new-card-combined-expiry-autofill";
|
||||||
|
|
||||||
public static List<string> GetAllKeys()
|
public static List<string> GetAllKeys()
|
||||||
@ -157,7 +158,8 @@ public static class FeatureFlagKeys
|
|||||||
return new Dictionary<string, string>()
|
return new Dictionary<string, string>()
|
||||||
{
|
{
|
||||||
{ DuoRedirect, "true" },
|
{ DuoRedirect, "true" },
|
||||||
{ BulkDeviceApproval, "true" }
|
{ BulkDeviceApproval, "true" },
|
||||||
|
{ CipherKeyEncryption, "true" },
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user