From 75f88663796915e7a39ced530a83e05751579977 Mon Sep 17 00:00:00 2001 From: Demetrios Skamiotis Date: Tue, 14 Nov 2023 11:27:11 +0000 Subject: [PATCH] add feature switch for user-features --- common/app/conf/switches/FeatureSwitches.scala | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/common/app/conf/switches/FeatureSwitches.scala b/common/app/conf/switches/FeatureSwitches.scala index ebddab8ee37..fa2757ec20c 100644 --- a/common/app/conf/switches/FeatureSwitches.scala +++ b/common/app/conf/switches/FeatureSwitches.scala @@ -532,4 +532,14 @@ trait FeatureSwitches { sellByDate = Some(LocalDate.of(2024, 6, 5)), exposeClientSide = false, ) + + val UserFeaturesDcr = Switch( + SwitchGroup.Feature, + "user-features-dcr", + "If this switch is on, we will load user-features from dcr", + owners = Seq(Owner.withEmail("dotcom.platform@theguardian.com")), + safeState = Off, + sellByDate = Some(LocalDate.of(2024, 1, 15)), + exposeClientSide = true, + ) }