Skip to content

Commit

Permalink
Add of end_of_year_2024 feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
bjtitus committed Oct 16, 2024
1 parent b46aa54 commit 5081d0d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ public enum FeatureFlag: String, CaseIterable {
/// to apply the Global or local settings
case customPlaybackSettings

/// Enable the End of Year 2024 recap
case endOfYear2024

public var enabled: Bool {
if let overriddenValue = FeatureFlagOverrideStore().overriddenValue(for: self) {
return overriddenValue
Expand Down Expand Up @@ -204,6 +207,8 @@ public enum FeatureFlag: String, CaseIterable {
true
case .customPlaybackSettings:
false
case .endOfYear2024:
false
}
}

Expand Down

0 comments on commit 5081d0d

Please sign in to comment.