diff --git a/model/feature_flags.go b/model/feature_flags.go index 6b8be8c6bc..64006b0737 100644 --- a/model/feature_flags.go +++ b/model/feature_flags.go @@ -52,6 +52,9 @@ type FeatureFlags struct { // Enable Calls plugin support in the mobile app CallsMobile bool + + // Start A/B tour tips automatically, possible values = ("none", "auto") + AutoTour string } func (f *FeatureFlags) SetDefaults() { @@ -70,6 +73,7 @@ func (f *FeatureFlags) SetDefaults() { f.DownloadAppsCTA = "none" f.BoardsUnfurl = true f.CallsMobile = false + f.AutoTour = "none" } func (f *FeatureFlags) Plugins() map[string]string {