mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
* [AC-1145] Add TDE feature flag * [AC-1145] Update sso-config to use new member decryption type and remove keyConnectorEnabled * [AC-1145] Add new TDE option to SSO config form and update to CL radio buttons * [AC-1145] Update checkboxes to CL checkboxes * [AC-1145] Fix messages.json warning * [AC-1145] Update to new form async actions * [AC-1145] Modify key connector option display logic to check for TDE feature flag * [AC-1145] Remove obsolete app-checkbox component * [AC-1145] Update TDE option description to refer to master password reset policy
6 lines
211 B
TypeScript
6 lines
211 B
TypeScript
export enum FeatureFlag {
|
|
DisplayEuEnvironmentFlag = "display-eu-environment",
|
|
DisplayLowKdfIterationWarningFlag = "display-kdf-iteration-warning",
|
|
TrustedDeviceEncryption = "trusted-device-encryption",
|
|
}
|