From 3365f56584bc570983a2cd789e91c15664e0ef13 Mon Sep 17 00:00:00 2001 From: Nathaniel Allred Date: Wed, 20 Oct 2021 12:48:08 -0500 Subject: [PATCH] support auto tour ab test (#18695) --- model/feature_flags.go | 4 ++++ 1 file changed, 4 insertions(+) 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 {