added log message when user attempts to login but registration closed

This commit is contained in:
Brad Rydzewski 2014-10-13 21:30:12 -07:00
parent 782914b46f
commit a2dadfd6a6

View file

@ -52,6 +52,7 @@ func GetLogin(c web.C, w http.ResponseWriter, r *http.Request) {
if capability.Enabled(ctx, capability.Registration) == false {
users, err := datastore.GetUserList(ctx)
if err != nil || len(users) != 0 {
log.Println("Unable to create account. Registration is closed")
w.WriteHeader(http.StatusForbidden)
return
}