Skip to content

Commit 8799ee8

Browse files
authored
Merge pull request #8155 from woocommerce/task/add-ssr-to-zd-feature-flag
Add feature flag: System Status Report to support requests
2 parents 575f025 + 36f7ea3 commit 8799ee8

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
@@ -39,6 +39,8 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
3939
return buildConfig == .localDeveloper || buildConfig == .alpha
4040
case .justInTimeMessagesOnDashboard:
4141
return true
42+
case .systemStatusReportInSupportRequest:
43+
return buildConfig == .localDeveloper || buildConfig == .alpha
4244
case .performanceMonitoring,
4345
.performanceMonitoringCoreData,
4446
.performanceMonitoringFileIO,

Experiments/Experiments/FeatureFlag.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ public enum FeatureFlag: Int {
8282
///
8383
case justInTimeMessagesOnDashboard
8484

85+
/// Adds the System Status Report to support requests
86+
///
87+
case systemStatusReportInSupportRequest
88+
8589
// MARK: - Performance Monitoring
8690
//
8791
// These flags are not transient. That is, they are not here to help us rollout a feature,

0 commit comments

Comments
 (0)