Skip to content

Commit

Permalink
[ES-309] fixed residenceStatus attribute issue in VCI. (#1122)
Browse files Browse the repository at this point in the history
Signed-off-by: Mahammed Taheer <[email protected]>
  • Loading branch information
mahammedtaheer authored Oct 31, 2023
1 parent 9e56929 commit 3bcb2e0
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,8 @@ public List<String> filterAllowedUserClaims(String oidcClientId, List<String> co
return List.of();
}

List<String> oidcClientAllowedUserClaims = List.of(oidcClientData.get().getUserClaims())
.stream()
.map(String::toLowerCase)
.collect(Collectors.toList());
List<String> oidcClientAllowedUserClaims = List.of(oidcClientData.get().getUserClaims());

if (consentAttributes.isEmpty()) {
return oidcClientAllowedUserClaims;
}
Expand Down

0 comments on commit 3bcb2e0

Please sign in to comment.