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 {