* Add in-screen invitation modal invite to team feature flag
Этот коммит содержится в:
Nathaniel Allred
2021-11-12 09:20:15 -06:00
коммит произвёл GitHub
родитель e3240a2ddd
Коммит a7d9b83968

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

@@ -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 {