Login fail in ldap should return 401

This commit is contained in:
Tan Jiang 2016-03-08 12:33:06 +08:00
parent 3e942e3db7
commit 33bd4f147d

View File

@ -53,7 +53,7 @@ func (c *CommonController) Login() {
user, err := auth.Login(models.AuthModel{principal, password})
if err != nil {
beego.Error("Error occurred in UserLogin:", err)
c.CustomAbort(http.StatusInternalServerError, "Internal error.")
c.CustomAbort(http.StatusUnauthorized, "")
}
if user == nil {