Skip to content

Commit d6b1702

Browse files
committed
Adds feature flag for remote synchronizer
1 parent a674d6b commit d6b1702

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Experiments/Experiments/DefaultFeatureFlagService.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
2727
return true
2828
case .orderCreation:
2929
return buildConfig == .localDeveloper || buildConfig == .alpha
30+
case .orderCreationRemoteSynchronizer:
31+
return false
3032
case .hubMenu:
3133
return true
3234
case .systemStatusReport:

Experiments/Experiments/FeatureFlag.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ public enum FeatureFlag: Int {
5454
///
5555
case orderCreation
5656

57+
/// Allows new orders to be manually created
58+
///
59+
case orderCreationRemoteSynchronizer
60+
5761
/// Display the new tab "Menu" in the tab bar.
5862
///
5963
case hubMenu

0 commit comments

Comments
 (0)