From 970cf40745a7441462461467274dc6b1b3de5eb8 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sun, 7 Jul 2024 02:59:04 -0400 Subject: [PATCH] resetPassword function to handle user not found case --- internal/user/handler.go | 5 ++--- 1 file 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 {