We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a2e716 commit df9a9a2Copy full SHA for df9a9a2
Experiments/Experiments/DefaultFeatureFlagService.swift
@@ -37,6 +37,8 @@ public struct DefaultFeatureFlagService: FeatureFlagService {
37
return true
38
case .orderCreationSearchCustomers:
39
return buildConfig == .localDeveloper || buildConfig == .alpha
40
+ case .lockscreenWidgets:
41
+ return buildConfig == .localDeveloper || buildConfig == .alpha
42
default:
43
44
}
Experiments/Experiments/FeatureFlag.swift
@@ -77,4 +77,8 @@ public enum FeatureFlag: Int {
77
/// Enables the Search Customers functionality in the Order Creation screen
78
///
79
case orderCreationSearchCustomers
80
+
81
+ /// Enables lock screen widgets
82
+ ///
83
+ case lockscreenWidgets
84
0 commit comments