From feeada3a1bc0442cd4898d194c534027e4501661 Mon Sep 17 00:00:00 2001 From: Dominik Lander Date: Thu, 12 Oct 2023 09:35:29 +0100 Subject: [PATCH] Add feature switch to enable fronts banner ads. --- common/app/conf/switches/CommercialSwitches.scala | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/common/app/conf/switches/CommercialSwitches.scala b/common/app/conf/switches/CommercialSwitches.scala index f1047d1ad55..d18172c1009 100644 --- a/common/app/conf/switches/CommercialSwitches.scala +++ b/common/app/conf/switches/CommercialSwitches.scala @@ -158,6 +158,16 @@ trait CommercialSwitches { sellByDate = never, exposeClientSide = true, ) + + val frontsBannerAds: Switch = Switch( + group = Commercial, + name = "fronts-banner-ads", + description = "Enable banner ads to display instead of MPUs and merch-high on fronts pages.", + owners = group(Commercial), + safeState = Off, + sellByDate = never, + exposeClientSide = true, + ) } trait PrebidSwitches {