Skip to content

Commit

Permalink
feat: Fix user ID formatting in auth handler
Browse files Browse the repository at this point in the history
  • Loading branch information
vaayne committed Aug 20, 2024
1 parent bec2347 commit 21009e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/port/httpserver/auth_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,6 @@ func (h *authHandler) validateJwtToken(c echo.Context) error {
h.setCookieJwtToken(c, jwt)
}
return JsonResponse(c, http.StatusOK, userResponse{
ID: userId,
ID: userId,
})
}

0 comments on commit 21009e8

Please sign in to comment.