Skip to content

Commit c122354

Browse files
committed
feat: OIDC extract claims from OIDC IdToken, UserInfo Endpoint and User attributes
1 parent 4ef2ead commit c122354

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/main/java/eu/zuinnote/example/springwebdemo/configuration/SecurityConfigurationOidc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ private Set<GrantedAuthority> parseClaim(String type, String claim, Object claim
125125
this.config.getOidc().getMapper().getClaimsSeparatorMap();
126126
if ((separatorMap != null)
127127
&& separatorMap.containsKey(
128-
claim)) { // check if we should parse the a list from the claim
128+
claim)) { // check if we should parse a list from the claim
129129
String separator =
130130
this.config.getOidc().getMapper().getClaimsSeparatorMap().get(claim);
131131

0 commit comments

Comments
 (0)