Skip to content

Commit

Permalink
add dark mode switch for dcar project (#26650)
Browse files Browse the repository at this point in the history
  • Loading branch information
cemms1 authored Oct 19, 2023
1 parent b6be51d commit 4b55c06
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions common/app/conf/switches/FeatureSwitches.scala
Original file line number Diff line number Diff line change
Expand Up @@ -522,4 +522,14 @@ trait FeatureSwitches {
exposeClientSide = true,
)

val DarkModeInApps = Switch(
SwitchGroup.Feature,
"dark-mode-apps",
"If this switch is on, we will allow dark mode in apps articles",
owners = Seq(Owner.withEmail("[email protected]")),
safeState = Off,
// This is a random date in the future but this switch should be removed far before then
sellByDate = Some(LocalDate.of(2024, 6, 5)),
exposeClientSide = false,
)
}

0 comments on commit 4b55c06

Please sign in to comment.