-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor the code for readability and make the iframe look better Co-Authored-By: Dom Lander <[email protected]>
- Loading branch information
Showing
5 changed files
with
42 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
package conf.switches | ||
|
||
import conf.switches.Expiry.never | ||
import java.time.LocalDate | ||
|
||
trait JournalismSwitches { | ||
|
||
|
@@ -73,4 +74,14 @@ trait JournalismSwitches { | |
sellByDate = never, | ||
exposeClientSide = true, | ||
) | ||
|
||
val Euro2024Header = Switch( | ||
SwitchGroup.Journalism, | ||
name = "euro-2024-header", | ||
description = "Show the Euro 2024 interactive atom header on football pages", | ||
owners = Seq(Owner.withEmail("[email protected]")), | ||
safeState = Off, | ||
sellByDate = LocalDate.of(2024, 7, 15), | ||
exposeClientSide = true, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters