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 <pablo.velez@mattermost.com>
Этот коммит содержится в:
Pablo Andrés Vélez Vidal
2021-12-02 14:42:08 +01:00
коммит произвёл GitHub
родитель c96bb583e7
Коммит 8a62bfaa65

Просмотреть файл

@@ -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"
}