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

Этот коммит содержится в:
Martin Kraft
2018-02-13 06:08:21 -05:00
коммит произвёл Jesús Espino
родитель 9325430859
Коммит b7fc3d7d35
6 изменённых файлов: 69 добавлений и 35 удалений

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

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