From 8a62bfaa65aad8610ebdb6a5e1f0dc4088e7957d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Andr=C3=A9s=20V=C3=A9lez=20Vidal?= Date: Thu, 2 Dec 2021 14:42:08 +0100 Subject: [PATCH] MM-38674 - AB test for first guided channel creation (#18885) * MM-38674 - AB test for first guided channel creation * set default value for the guided creation as false 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 c1d6427f87..a2d53e34a5 100644 --- a/model/feature_flags.go +++ b/model/feature_flags.go @@ -62,6 +62,9 @@ type FeatureFlags struct { // A/B test for the add members to channel button, possible values = ("top", "bottom") AddMembersToChannel string + // Enable Create First Channel + GuidedChannelCreation bool + // Determine after which duration in hours to send a second invitation to someone that didn't join after the initial invite, possible values = ("48", "72") ResendInviteEmailInterval string @@ -88,6 +91,7 @@ func (f *FeatureFlags) SetDefaults() { f.AutoTour = "none" f.BoardsFeatureFlags = "" f.AddMembersToChannel = "top" + f.GuidedChannelCreation = false f.ResendInviteEmailInterval = "" f.InviteToTeam = "none" }