Skip to content

Commit 0fadd94

Browse files
authored
Merge pull request #8529 from woocommerce/task/ippiaf-add-feature-flag
[IPPInAppFeedback] Add feature flag for IPP in-app feedback banner
2 parents 8ff603e + 8f3ef6d commit 0fadd94

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
@@ -45,6 +45,8 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
4545
return true
4646
case .systemStatusReportInSupportRequest:
4747
return true
48+
case .IPPInAppFeedbackBanner:
49+
return buildConfig == .localDeveloper || buildConfig == .alpha
4850
case .performanceMonitoring,
4951
.performanceMonitoringCoreData,
5052
.performanceMonitoringFileIO,

Experiments/Experiments/FeatureFlag.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ public enum FeatureFlag: Int {
9999
///
100100
case systemStatusReportInSupportRequest
101101

102+
/// IPP in-app feedback banner
103+
///
104+
case IPPInAppFeedbackBanner
105+
102106
// MARK: - Performance Monitoring
103107
//
104108
// These flags are not transient. That is, they are not here to help us rollout a feature,

0 commit comments

Comments
 (0)