MM-2056 fixes problem with creating team

Этот коммит содержится в:
=Corey Hulen
2015-08-31 13:33:22 -07:00
родитель 82a54f9363
Коммит 7de7de6ad0
10 изменённых файлов: 12 добавлений и 18 удалений

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

@@ -31,7 +31,7 @@ type ServiceSettings struct {
UseLocalStorage bool
StorageDirectory string
AllowedLoginAttempts int
AllowEmailSignUp bool
DisableEmailSignUp bool
}
type SSOSetting struct {
@@ -278,7 +278,7 @@ func GetAllowedAuthServices() []string {
}
}
if Cfg.ServiceSettings.AllowEmailSignUp {
if !Cfg.ServiceSettings.DisableEmailSignUp {
authServices = append(authServices, "email")
}