Skip to content

Commit d8a2c51

Browse files
committed
adds feature flag for pointOfSaleOrdersi1
1 parent aa345ab commit d8a2c51

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Modules/Sources/Experiments/DefaultFeatureFlagService.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
9393
return false
9494
case .pointOfSaleAsATabi1:
9595
return true
96+
case .pointOfSaleOrdersi1:
97+
return buildConfig == .localDeveloper || buildConfig == .alpha
9698
default:
9799
return true
98100
}

Modules/Sources/Experiments/FeatureFlag.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,8 @@ public enum FeatureFlag: Int {
195195
/// Enables displaying POS as a tab in the tab bar with the same eligibility as the previous entry point
196196
///
197197
case pointOfSaleAsATabi1
198+
199+
/// Enables displaying Point Of Sale details in order list and order details
200+
///
201+
case pointOfSaleOrdersi1
198202
}

0 commit comments

Comments
 (0)