Skip to content

Commit

Permalink
add dark mode switch for dcar project
Browse files Browse the repository at this point in the history
  • Loading branch information
cemms1 committed Oct 18, 2023
1 parent 6d2fda0 commit aee55b5
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 @@ -542,4 +542,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 aee55b5

Please sign in to comment.