diff options
Diffstat (limited to 'model/config.go')
-rw-r--r-- | model/config.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/model/config.go b/model/config.go index d18874ea1..fb34d1a04 100644 --- a/model/config.go +++ b/model/config.go @@ -940,7 +940,7 @@ type TeamSettings struct { EnableConfirmNotificationsToChannel *bool TeammateNameDisplay *string ExperimentalTownSquareIsReadOnly *bool - DefaultTeamName *string + ExperimentalPrimaryTeam *string } func (s *TeamSettings) SetDefaults() { @@ -1037,8 +1037,8 @@ func (s *TeamSettings) SetDefaults() { s.ExperimentalTownSquareIsReadOnly = NewBool(false) } - if s.DefaultTeamName == nil { - s.DefaultTeamName = NewString("") + if s.ExperimentalPrimaryTeam == nil { + s.ExperimentalPrimaryTeam = NewString("") } } |