Skip to content

Commit 5d6c381

Browse files
committed
Adds enableCouponsInPointOfSale feature flag
1 parent 9a52eb2 commit 5d6c381

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
@@ -71,6 +71,8 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
7171
return false
7272
case .pointOfSale:
7373
return buildConfig == .localDeveloper || buildConfig == .alpha
74+
case .enableCouponsInPointOfSale:
75+
return buildConfig == .localDeveloper || buildConfig == .alpha
7476
case .googleAdsCampaignCreationOnWebView:
7577
return true
7678
case .backgroundTasks:

Experiments/Experiments/FeatureFlag.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,10 @@ public enum FeatureFlag: Int {
157157
///
158158
case pointOfSale
159159

160+
/// Enables coupons in Point of Sale
161+
///
162+
case enableCouponsInPointOfSale
163+
160164
/// Enables Google ads campaign creation on web view
161165
///
162166
case googleAdsCampaignCreationOnWebView

0 commit comments

Comments
 (0)