Skip to content

Commit 7fb240e

Browse files
committed
Add feature flag for adding SSR to support request
1 parent 256dfe4 commit 7fb240e

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 a 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)