Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Modules/Sources/Experiments/DefaultFeatureFlagService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
return true
case .pointOfSaleCatalogAPI:
return false
case .pointOfSaleRefundsi1:
return buildConfig == .localDeveloper || buildConfig == .alpha
default:
return true
}
Expand Down
4 changes: 4 additions & 0 deletions Modules/Sources/Experiments/FeatureFlag.swift
Original file line number Diff line number Diff line change
Expand Up @@ -211,4 +211,8 @@ public enum FeatureFlag: Int {
/// Enables using the catalog API endpoint for Point of Sale catalog full sync
///
case pointOfSaleCatalogAPI

/// Enables the refunds functionality within POS
///
case pointOfSaleRefundsi1
}
Loading