summaryrefslogtreecommitdiffstats
path: root/api/team.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-08-31 13:33:22 -0700
committer=Corey Hulen <corey@hulen.com>2015-08-31 13:33:22 -0700
commit7de7de6ad0882ef25ed9be5bbd91576cc822206f (patch)
treedbd7268878456d9fc0dce82a72b804d14cc6ee21 /api/team.go
parent82a54f9363e3a6b7d4268ef951ac427e94deacb2 (diff)
downloadchat-7de7de6ad0882ef25ed9be5bbd91576cc822206f.tar.gz
chat-7de7de6ad0882ef25ed9be5bbd91576cc822206f.tar.bz2
chat-7de7de6ad0882ef25ed9be5bbd91576cc822206f.zip
MM-2056 fixes problem with creating team
Diffstat (limited to 'api/team.go')
-rw-r--r--api/team.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/api/team.go b/api/team.go
index e34b3a610..8cce384c3 100644
--- a/api/team.go
+++ b/api/team.go
@@ -36,7 +36,7 @@ func InitTeam(r *mux.Router) {
}
func signupTeam(c *Context, w http.ResponseWriter, r *http.Request) {
- if !utils.Cfg.ServiceSettings.AllowEmailSignUp {
+ if utils.Cfg.ServiceSettings.DisableEmailSignUp {
c.Err = model.NewAppError("signupTeam", "Team sign-up with email is disabled.", "")
c.Err.StatusCode = http.StatusNotImplemented
return
@@ -139,7 +139,7 @@ func createTeamFromSSO(c *Context, w http.ResponseWriter, r *http.Request) {
}
func createTeamFromSignup(c *Context, w http.ResponseWriter, r *http.Request) {
- if !utils.Cfg.ServiceSettings.AllowEmailSignUp {
+ if utils.Cfg.ServiceSettings.DisableEmailSignUp {
c.Err = model.NewAppError("createTeamFromSignup", "Team sign-up with email is disabled.", "")
c.Err.StatusCode = http.StatusNotImplemented
return
@@ -239,7 +239,7 @@ func createTeamFromSignup(c *Context, w http.ResponseWriter, r *http.Request) {
}
func createTeam(c *Context, w http.ResponseWriter, r *http.Request) {
- if !utils.Cfg.ServiceSettings.AllowEmailSignUp {
+ if utils.Cfg.ServiceSettings.DisableEmailSignUp {
c.Err = model.NewAppError("createTeam", "Team sign-up with email is disabled.", "")
c.Err.StatusCode = http.StatusNotImplemented
return