Skip to content

Commit

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

List<String> oidcClientAllowedUserClaims = List.of(oidcClientData.get().getUserClaims())
.stream()
List<String> oidcClientAllowedUserClaims = List.of(oidcClientData.get().getUserClaims());
/* .stream()
.map(String::toLowerCase)
.collect(Collectors.toList());
.collect(Collectors.toList()); */
if (consentAttributes.isEmpty()) {
return oidcClientAllowedUserClaims;
}
Expand Down

0 comments on commit 486ab27

Please sign in to comment.