Skip to content

Commit 89517ef

Browse files
committed
feat: OIDC extract claims from OIDC IdToken, UserInfo Endpoint and User attributes
1 parent 6267830 commit 89517ef

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
@@ -149,7 +149,7 @@ private Set<GrantedAuthority> parseClaim(String type, String claim, Object claim
149149
.collect(Collectors.toCollection(HashSet::new)));
150150
} else { // unknown type of claim cannot be processed
151151
this.log.error(String.format("Claim %s in %type has an unknown type", claim, type));
152-
0 }
152+
}
153153
}
154154
return result;
155155
}

0 commit comments

Comments
 (0)