From 3d8ec301a6c25d3215dfa7f71e42d458c8db73b8 Mon Sep 17 00:00:00 2001 From: Jake Lee Kennedy Date: Tue, 19 Sep 2023 17:11:09 +0100 Subject: [PATCH] Add new switchboard switch for public good --- 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 bcab923228b6..58191750cde5 100644 --- a/common/app/conf/switches/CommercialSwitches.scala +++ b/common/app/conf/switches/CommercialSwitches.scala @@ -167,6 +167,16 @@ trait CommercialSwitches { sellByDate = never, exposeClientSide = true, ) + + val publicGood: Switch = Switch( + group = Commercial, + name = "public-good", + description = "Enable Public Good functionality", + owners = group(Commercial), + safeState = Off, + sellByDate = never, + exposeClientSide = true, + ) } trait PrebidSwitches {