add the id of the user into the token

This commit is contained in:
2023-02-10 22:04:01 -03:00
parent 73e958efb1
commit f914c62d5d
2 changed files with 4 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ func Login(writer http.ResponseWriter, request *http.Request, params httprouter.
Token string `json:"token"`
}
tokenString, err := utils.GenerateJWT(user.Email, user.Username)
tokenString, err := utils.GenerateJWT(user.ID, user.Email, user.Username)
if err != nil {
utils.JSONErrorOutput(writer, http.StatusBadRequest, err.Error())
return