Skip to content

Commit ff3a6dd

Browse files
committed
Merge branch 'feature/authenticating-authority'
2 parents b00d96b + a1aab96 commit ff3a6dd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

oidc/src/main/java/oidc/endpoints/UserInfoEndpoint.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ private ResponseEntity<Map<String, Object>> userInfo(HttpServletRequest request)
8484
if (!CollectionUtils.isEmpty(acrClaims)) {
8585
attributes.put("acr", String.join(" ", acrClaims));
8686
}
87+
attributes.put("authenticating_authority", user.getAuthenticatingAuthority());
8788
attributes.put("updated_at", user.getUpdatedAt());
8889
attributes.put("sub", user.getSub());
8990
return ResponseEntity.ok(new TreeMap(attributes));

0 commit comments

Comments
 (0)