Skip to content

Commit

Permalink
End of Year 2024: Add of end_of_year_2024 feature flag (#2288)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjtitus authored Oct 18, 2024
2 parents 60e40fc + 5081d0d commit 54671e2
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,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 @@ -199,6 +202,8 @@ public enum FeatureFlag: String, CaseIterable {
true
case .customPlaybackSettings:
false
case .endOfYear2024:
false
}
}

Expand Down

0 comments on commit 54671e2

Please sign in to comment.