Dear all,
By modifying the landing page template, is it possible to display the group to which the user belongs? I’m maneging identification and groups with Keycloak (openid). How can I retrieve the values of the roles-claim of openid at the landing page level, simply to display them in a small message?
Best
Hi
You can use this snippet:
<div class="alert alert-info" role="alert">
<span th:text="${@userService.getGroups()}"></span>
</div>
1 Like
Perfect, I’ll look at it.
Thank you.