From 841155db3e0b908ba0be75a4ee9a9c2c12199503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Andr=C3=A9s=20V=C3=A9lez=20Vidal?= Date: Tue, 26 Oct 2021 16:06:50 +0200 Subject: [PATCH] MM-39059 - AB test for the add members channel (#18832) Co-authored-by: Pablo Velez Vidal --- model/feature_flags.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/model/feature_flags.go b/model/feature_flags.go index af99d4d39e..b5a54ffe96 100644 --- a/model/feature_flags.go +++ b/model/feature_flags.go @@ -60,6 +60,9 @@ type FeatureFlags struct { // A dash separated list for feature flags to turn on for Boards BoardsFeatureFlags string + + // A/B test for the add members to channel button, possible values = ("top", "bottom") + AddMembersToChannel string } func (f *FeatureFlags) SetDefaults() { @@ -81,6 +84,7 @@ func (f *FeatureFlags) SetDefaults() { f.CallsMobile = false f.AutoTour = "none" f.BoardsFeatureFlags = "" + f.AddMembersToChannel = "top" } func (f *FeatureFlags) Plugins() map[string]string {