summaryrefslogtreecommitdiffstats
path: root/api/user.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-07-30 00:46:17 -0800
committer=Corey Hulen <corey@hulen.com>2015-07-30 00:46:17 -0800
commitb4877c5d36569dae486a1e53f39c35d346e3d3d2 (patch)
treec531aaff8514ce3cb7508d67a33d89a4d116d5d5 /api/user.go
parent4244990bf118c04d4d66dd946aaf5217fc59a393 (diff)
downloadchat-b4877c5d36569dae486a1e53f39c35d346e3d3d2.tar.gz
chat-b4877c5d36569dae486a1e53f39c35d346e3d3d2.tar.bz2
chat-b4877c5d36569dae486a1e53f39c35d346e3d3d2.zip
Fixing code review feedback
Diffstat (limited to 'api/user.go')
-rw-r--r--api/user.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/api/user.go b/api/user.go
index 94b4eca18..3c9ae5718 100644
--- a/api/user.go
+++ b/api/user.go
@@ -300,9 +300,14 @@ func checkUserPassword(c *Context, user *model.User, password string) bool {
}
return false
+ } else {
+ if result := <-Srv.Store.User().UpdateFailedPasswordAttempts(user.Id, 0); result.Err != nil {
+ c.LogError(result.Err)
+ }
+
+ return true
}
- return true
}
// User MUST be validated before calling Login