Updates migration tests to reflect front-end mapping changes. (#8237)

This commit is contained in:
Martin Kraft
2018-02-13 06:08:21 -05:00
committed by Jesús Espino
parent 9325430859
commit b7fc3d7d35
6 changed files with 69 additions and 35 deletions

View File

@@ -962,7 +962,7 @@ func (s *ThemeSettings) SetDefaults() {
type TeamSettings struct {
SiteName string
MaxUsersPerTeam *int
EnableTeamCreation bool
EnableTeamCreation *bool
EnableUserCreation bool
EnableOpenServer *bool
RestrictCreationToDomains string
@@ -1085,6 +1085,10 @@ func (s *TeamSettings) SetDefaults() {
if s.ExperimentalPrimaryTeam == nil {
s.ExperimentalPrimaryTeam = NewString("")
}
if s.EnableTeamCreation == nil {
s.EnableTeamCreation = NewBool(true)
}
}
type ClientRequirements struct {