mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
Group AC Team feature flags (#13002)
This commit is contained in:
@@ -4,6 +4,12 @@
|
|||||||
* Flags MUST be short lived and SHALL be removed once enabled.
|
* Flags MUST be short lived and SHALL be removed once enabled.
|
||||||
*/
|
*/
|
||||||
export enum FeatureFlag {
|
export enum FeatureFlag {
|
||||||
|
/* Admin Console Team */
|
||||||
|
ProviderClientVaultPrivacyBanner = "ac-2833-provider-client-vault-privacy-banner",
|
||||||
|
AccountDeprovisioning = "pm-10308-account-deprovisioning",
|
||||||
|
VerifiedSsoDomainEndpoint = "pm-12337-refactor-sso-details-endpoint",
|
||||||
|
PM14505AdminConsoleIntegrationPage = "pm-14505-admin-console-integration-page",
|
||||||
|
|
||||||
/* Autofill */
|
/* Autofill */
|
||||||
BlockBrowserInjectionsByDomain = "block-browser-injections-by-domain",
|
BlockBrowserInjectionsByDomain = "block-browser-injections-by-domain",
|
||||||
DelayFido2PageScriptInitWithinMv2 = "delay-fido2-page-script-init-within-mv2",
|
DelayFido2PageScriptInitWithinMv2 = "delay-fido2-page-script-init-within-mv2",
|
||||||
@@ -24,17 +30,13 @@ export enum FeatureFlag {
|
|||||||
PersistPopupView = "persist-popup-view",
|
PersistPopupView = "persist-popup-view",
|
||||||
PM4154_BulkEncryptionService = "PM-4154-bulk-encryption-service",
|
PM4154_BulkEncryptionService = "PM-4154-bulk-encryption-service",
|
||||||
TwoFactorComponentRefactor = "two-factor-component-refactor",
|
TwoFactorComponentRefactor = "two-factor-component-refactor",
|
||||||
ProviderClientVaultPrivacyBanner = "ac-2833-provider-client-vault-privacy-banner",
|
|
||||||
VaultBulkManagementAction = "vault-bulk-management-action",
|
VaultBulkManagementAction = "vault-bulk-management-action",
|
||||||
UnauthenticatedExtensionUIRefresh = "unauth-ui-refresh",
|
UnauthenticatedExtensionUIRefresh = "unauth-ui-refresh",
|
||||||
AccountDeprovisioning = "pm-10308-account-deprovisioning",
|
|
||||||
SSHKeyVaultItem = "ssh-key-vault-item",
|
SSHKeyVaultItem = "ssh-key-vault-item",
|
||||||
SSHAgent = "ssh-agent",
|
SSHAgent = "ssh-agent",
|
||||||
AC2476_DeprecateStripeSourcesAPI = "AC-2476-deprecate-stripe-sources-api",
|
AC2476_DeprecateStripeSourcesAPI = "AC-2476-deprecate-stripe-sources-api",
|
||||||
CipherKeyEncryption = "cipher-key-encryption",
|
CipherKeyEncryption = "cipher-key-encryption",
|
||||||
VerifiedSsoDomainEndpoint = "pm-12337-refactor-sso-details-endpoint",
|
|
||||||
PM11901_RefactorSelfHostingLicenseUploader = "PM-11901-refactor-self-hosting-license-uploader",
|
PM11901_RefactorSelfHostingLicenseUploader = "PM-11901-refactor-self-hosting-license-uploader",
|
||||||
PM14505AdminConsoleIntegrationPage = "pm-14505-admin-console-integration-page",
|
|
||||||
CriticalApps = "pm-14466-risk-insights-critical-application",
|
CriticalApps = "pm-14466-risk-insights-critical-application",
|
||||||
TrialPaymentOptional = "PM-8163-trial-payment",
|
TrialPaymentOptional = "PM-8163-trial-payment",
|
||||||
SecurityTasks = "security-tasks",
|
SecurityTasks = "security-tasks",
|
||||||
@@ -58,6 +60,12 @@ const FALSE = false as boolean;
|
|||||||
* We support true as a value as we prefer flags to "enable" not "disable".
|
* We support true as a value as we prefer flags to "enable" not "disable".
|
||||||
*/
|
*/
|
||||||
export const DefaultFeatureFlagValue = {
|
export const DefaultFeatureFlagValue = {
|
||||||
|
/* Admin Console Team */
|
||||||
|
[FeatureFlag.ProviderClientVaultPrivacyBanner]: FALSE,
|
||||||
|
[FeatureFlag.AccountDeprovisioning]: FALSE,
|
||||||
|
[FeatureFlag.VerifiedSsoDomainEndpoint]: FALSE,
|
||||||
|
[FeatureFlag.PM14505AdminConsoleIntegrationPage]: FALSE,
|
||||||
|
|
||||||
/* Autofill */
|
/* Autofill */
|
||||||
[FeatureFlag.BlockBrowserInjectionsByDomain]: FALSE,
|
[FeatureFlag.BlockBrowserInjectionsByDomain]: FALSE,
|
||||||
[FeatureFlag.DelayFido2PageScriptInitWithinMv2]: FALSE,
|
[FeatureFlag.DelayFido2PageScriptInitWithinMv2]: FALSE,
|
||||||
@@ -78,17 +86,13 @@ export const DefaultFeatureFlagValue = {
|
|||||||
[FeatureFlag.PersistPopupView]: FALSE,
|
[FeatureFlag.PersistPopupView]: FALSE,
|
||||||
[FeatureFlag.PM4154_BulkEncryptionService]: FALSE,
|
[FeatureFlag.PM4154_BulkEncryptionService]: FALSE,
|
||||||
[FeatureFlag.TwoFactorComponentRefactor]: FALSE,
|
[FeatureFlag.TwoFactorComponentRefactor]: FALSE,
|
||||||
[FeatureFlag.ProviderClientVaultPrivacyBanner]: FALSE,
|
|
||||||
[FeatureFlag.VaultBulkManagementAction]: FALSE,
|
[FeatureFlag.VaultBulkManagementAction]: FALSE,
|
||||||
[FeatureFlag.UnauthenticatedExtensionUIRefresh]: FALSE,
|
[FeatureFlag.UnauthenticatedExtensionUIRefresh]: FALSE,
|
||||||
[FeatureFlag.AccountDeprovisioning]: FALSE,
|
|
||||||
[FeatureFlag.SSHKeyVaultItem]: FALSE,
|
[FeatureFlag.SSHKeyVaultItem]: FALSE,
|
||||||
[FeatureFlag.SSHAgent]: FALSE,
|
[FeatureFlag.SSHAgent]: FALSE,
|
||||||
[FeatureFlag.AC2476_DeprecateStripeSourcesAPI]: FALSE,
|
[FeatureFlag.AC2476_DeprecateStripeSourcesAPI]: FALSE,
|
||||||
[FeatureFlag.CipherKeyEncryption]: FALSE,
|
[FeatureFlag.CipherKeyEncryption]: FALSE,
|
||||||
[FeatureFlag.VerifiedSsoDomainEndpoint]: FALSE,
|
|
||||||
[FeatureFlag.PM11901_RefactorSelfHostingLicenseUploader]: FALSE,
|
[FeatureFlag.PM11901_RefactorSelfHostingLicenseUploader]: FALSE,
|
||||||
[FeatureFlag.PM14505AdminConsoleIntegrationPage]: FALSE,
|
|
||||||
[FeatureFlag.CriticalApps]: FALSE,
|
[FeatureFlag.CriticalApps]: FALSE,
|
||||||
[FeatureFlag.TrialPaymentOptional]: FALSE,
|
[FeatureFlag.TrialPaymentOptional]: FALSE,
|
||||||
[FeatureFlag.SecurityTasks]: FALSE,
|
[FeatureFlag.SecurityTasks]: FALSE,
|
||||||
|
|||||||
Reference in New Issue
Block a user