aboutsummaryrefslogtreecommitdiffstats
path: root/internal/user
diff options
context:
space:
mode:
Diffstat (limited to 'internal/user')
-rw-r--r--internal/user/handler.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/internal/user/handler.go b/internal/user/handler.go
index 961851f..15e881f 100644
--- a/internal/user/handler.go
+++ b/internal/user/handler.go
@@ -283,9 +283,8 @@ func (h *Handler) resetPassword(c *gin.Context) {
}
user, err := h.userRepo.FindByEmail(c, req.Email)
if err != nil {
- c.JSON(http.StatusNotFound, gin.H{
- "error": "User not found",
- })
+ c.JSON(http.StatusOK, gin.H{})
+ log.Error("account.handler.resetPassword failed to find user")
return
}
if user.Provider != 0 {