Skip to content

Commit

Permalink
PM-17795: Allow carousel, create account, and import logins feature f…
Browse files Browse the repository at this point in the history
…lags to be configured remotely
  • Loading branch information
matt-livefront committed Jan 31, 2025
1 parent c41b77d commit 9395ce3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions BitwardenShared/Core/Platform/Models/Enum/FeatureFlag.swift
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,6 @@ enum FeatureFlag: String, CaseIterable, Codable {
case .enableCipherKeyEncryption,
.enableDebugAppReviewPrompt,
.ignore2FANoticeEnvironmentCheck,
.importLoginsFlow,
.nativeCarouselFlow,
.nativeCreateAccountFlow,
.newDeviceVerificationPermanentDismiss,
.newDeviceVerificationTemporaryDismiss,
.testLocalFeatureFlag,
Expand All @@ -129,6 +126,9 @@ enum FeatureFlag: String, CaseIterable, Codable {
.cxpImportMobile,
.emailVerification,
.enableAuthenticatorSync,
.importLoginsFlow,
.nativeCarouselFlow,
.nativeCreateAccountFlow,
.refactorSsoDetailsEndpoint,
.sshKeyVaultItem,
.testRemoteFeatureFlag,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ final class FeatureFlagTests: BitwardenTestCase {
XCTAssertTrue(FeatureFlag.cxpImportMobile.isRemotelyConfigured)
XCTAssertTrue(FeatureFlag.emailVerification.isRemotelyConfigured)
XCTAssertTrue(FeatureFlag.enableAuthenticatorSync.isRemotelyConfigured)
XCTAssertTrue(FeatureFlag.importLoginsFlow.isRemotelyConfigured)
XCTAssertTrue(FeatureFlag.nativeCarouselFlow.isRemotelyConfigured)
XCTAssertTrue(FeatureFlag.nativeCreateAccountFlow.isRemotelyConfigured)
XCTAssertTrue(FeatureFlag.refactorSsoDetailsEndpoint.isRemotelyConfigured)
XCTAssertTrue(FeatureFlag.sshKeyVaultItem.isRemotelyConfigured)
XCTAssertTrue(FeatureFlag.testRemoteInitialBoolFlag.isRemotelyConfigured)
Expand All @@ -34,9 +37,6 @@ final class FeatureFlagTests: BitwardenTestCase {
XCTAssertFalse(FeatureFlag.enableDebugAppReviewPrompt.isRemotelyConfigured)
XCTAssertFalse(FeatureFlag.enableCipherKeyEncryption.isRemotelyConfigured)
XCTAssertFalse(FeatureFlag.ignore2FANoticeEnvironmentCheck.isRemotelyConfigured)
XCTAssertFalse(FeatureFlag.importLoginsFlow.isRemotelyConfigured)
XCTAssertFalse(FeatureFlag.nativeCarouselFlow.isRemotelyConfigured)
XCTAssertFalse(FeatureFlag.nativeCreateAccountFlow.isRemotelyConfigured)
XCTAssertFalse(FeatureFlag.testLocalFeatureFlag.isRemotelyConfigured)
XCTAssertFalse(FeatureFlag.testLocalInitialBoolFlag.isRemotelyConfigured)
XCTAssertFalse(FeatureFlag.testLocalInitialIntFlag.isRemotelyConfigured)
Expand Down

0 comments on commit 9395ce3

Please sign in to comment.