Skip to content

Commit

Permalink
Add AccountDeprovisioning feature flag (#10531)
Browse files Browse the repository at this point in the history
  • Loading branch information
addisonbeck authored Aug 16, 2024
1 parent 604e223 commit 1ccc450
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libs/common/src/enums/feature-flag.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export enum FeatureFlag {
EnableUpgradePasswordManagerSub = "AC-2708-upgrade-password-manager-sub",
GenerateIdentityFillScriptRefactor = "generate-identity-fill-script-refactor",
DelayFido2PageScriptInitWithinMv2 = "delay-fido2-page-script-init-within-mv2",
AccountDeprovisioning = "pm-10308-account-deprovisioning",
}

export type AllowedFeatureFlagTypes = boolean | number | string;
Expand Down Expand Up @@ -74,6 +75,7 @@ export const DefaultFeatureFlagValue = {
[FeatureFlag.EnableUpgradePasswordManagerSub]: FALSE,
[FeatureFlag.GenerateIdentityFillScriptRefactor]: FALSE,
[FeatureFlag.DelayFido2PageScriptInitWithinMv2]: FALSE,
[FeatureFlag.AccountDeprovisioning]: FALSE,
} satisfies Record<FeatureFlag, AllowedFeatureFlagTypes>;

export type DefaultFeatureFlagValueType = typeof DefaultFeatureFlagValue;
Expand Down

0 comments on commit 1ccc450

Please sign in to comment.