mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 18:53:29 +00:00
* Removed passwordless-login feature flag * Removed conditional on login component. * Added back reference accidentally deleted. * Fixed initialization of the service in tests. * Removed unused private variable. * Updated DI to remove configService * Undid changes to workspace file. * Undid all changes to workspace file * Undid merge changes to collection dialog * Linting
15 lines
685 B
TypeScript
15 lines
685 B
TypeScript
export enum FeatureFlag {
|
|
BrowserFilelessImport = "browser-fileless-import",
|
|
ItemShare = "item-share",
|
|
FlexibleCollectionsV1 = "flexible-collections-v-1", // v-1 is intentional
|
|
BulkCollectionAccess = "bulk-collection-access",
|
|
VaultOnboarding = "vault-onboarding",
|
|
GeneratorToolsModernization = "generator-tools-modernization",
|
|
KeyRotationImprovements = "key-rotation-improvements",
|
|
FlexibleCollectionsMigration = "flexible-collections-migration",
|
|
AC1607_PresentUserOffboardingSurvey = "AC-1607_present-user-offboarding-survey",
|
|
}
|
|
|
|
// Replace this with a type safe lookup of the feature flag values in PM-2282
|
|
export type FeatureFlagValue = number | string | boolean;
|