fix logging of password on Login
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-04-04 12:20:48 +10:00
parent 61f2813802
commit 45ceae73c4
2 changed files with 19 additions and 3 deletions

View File

@@ -96,13 +96,15 @@ func Login(c *gin.Context) {
u.UserName = input.Username
u.Password = input.Password
log.Printf("Login checking username '%s' and password '%s'\n", u.UserName, u.Password)
log.Printf("Login checking username '%s' and password length '%d'\n", u.UserName, len(u.Password))
token, err := models.LoginCheck(u.UserName, u.Password)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": "username or password is incorrect."})
return
} else {
log.Printf("Login verified, returning token '%s'\n", token)
}
c.JSON(http.StatusOK, gin.H{"access_token": token})