Skip to content

Commit

Permalink
[ALS-4793] Correct the subject return value
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcolon021 committed Aug 8, 2023
1 parent 745af96 commit abef9cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public Response authenticate(Map<String, String> authRequest) {
}

HashMap<String, Object> claims = new HashMap<>();
claims.put("sub", current_user.getUuid().toString());
claims.put("sub", current_user.getSubject());
claims.put("email", current_user.getUuid() + "@open_access.com");
claims.put("uuid", current_user.getUuid().toString());
HashMap<String, String> responseMap = authUtil.getUserProfileResponse(claims);
Expand Down

0 comments on commit abef9cb

Please sign in to comment.