From a7d9b83968e7bef5359439fecbd023e51fe5ff36 Mon Sep 17 00:00:00 2001 From: Nathaniel Allred Date: Fri, 12 Nov 2021 09:20:15 -0600 Subject: [PATCH] Mm 38799 invite to team (#18987) * Add in-screen invitation modal invite to team feature flag --- model/feature_flags.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/model/feature_flags.go b/model/feature_flags.go index 02be2c4f3f..1d90998007 100644 --- a/model/feature_flags.go +++ b/model/feature_flags.go @@ -63,6 +63,9 @@ type FeatureFlags struct { // A/B test for the add members to channel button, possible values = ("top", "bottom") AddMembersToChannel string + + // A/B test for whether radio buttons or toggle button is more effective in in-screen invite to team modal ("none", "toggle") + InviteToTeam string } func (f *FeatureFlags) SetDefaults() { @@ -85,6 +88,7 @@ func (f *FeatureFlags) SetDefaults() { f.AutoTour = "none" f.BoardsFeatureFlags = "" f.AddMembersToChannel = "top" + f.InviteToTeam = "none" } func (f *FeatureFlags) Plugins() map[string]string {