Skip to content

Commit

Permalink
move feature switch to commercialSwitches module
Browse files Browse the repository at this point in the history
  • Loading branch information
dskamiotis committed Jul 9, 2024
1 parent d157bf3 commit abc11d3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 10 additions & 0 deletions common/app/conf/switches/CommercialSwitches.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ import conf.switches.SwitchGroup.{Commercial, CommercialPrebid, Membership}

trait CommercialSwitches {

val LiveBlogTopSponsorshipSwitch = Switch(
Commercial,
"live-blog-top-sponsorship",
"When on allows a sposorship ad to be displayed on live blogs",
owners = group(Commercial),
safeState = On,
sellByDate = never,
exposeClientSide = true,
)

val ShouldLoadGoogleTagSwitch = Switch(
Commercial,
"should-load-googletag",
Expand Down
10 changes: 0 additions & 10 deletions common/app/conf/switches/FeatureSwitches.scala
Original file line number Diff line number Diff line change
Expand Up @@ -309,16 +309,6 @@ trait FeatureSwitches {
exposeClientSide = false,
)

val LiveBlogTopSponsorshipSwitch = Switch(
SwitchGroup.Feature,
"live-blog-top-sponsorship",
"When on allows new sposorship ad to be displayed on live blogs",
owners = Seq(Owner.withGithub("[email protected]")),
safeState = On,
sellByDate = never,
exposeClientSide = true,
)

// Owner: Maria Livia Chiorean
val SmartAppBanner = Switch(
SwitchGroup.Feature,
Expand Down

0 comments on commit abc11d3

Please sign in to comment.