-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add europe beta front test and prevent users seeing the beta front un…
…less opted into test (#27536)
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ object ActiveExperiments extends ExperimentsDefinition { | |
Set( | ||
RemoveLiteFronts, | ||
MastheadWithHighlights, | ||
EuropeBetaFront, | ||
DarkModeWeb, | ||
) | ||
implicit val canCheckExperiment: CanCheckExperiment = new CanCheckExperiment(this) | ||
|
@@ -28,6 +29,19 @@ object MastheadWithHighlights | |
participationGroup = Perc50, | ||
) | ||
|
||
object EuropeBetaFront | ||
extends Experiment( | ||
name = "europe-beta-front", | ||
description = "Allows viewing the beta version of the Europe network front", | ||
owners = Seq( | ||
Owner.withGithub("cemms1"), | ||
Owner.withEmail("[email protected]"), | ||
Owner.withEmail("[email protected]"), | ||
), | ||
sellByDate = LocalDate.of(2025, 4, 2), | ||
participationGroup = Perc0A, | ||
) | ||
|
||
object DarkModeWeb | ||
extends Experiment( | ||
name = "dark-mode-web", | ||
|
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