Skip to content
Snippets Groups Projects
Commit 2cc7e50e authored by OZGCloud's avatar OZGCloud
Browse files

Fix missing user roles/groups

parent 9db5c67c
No related branches found
No related tags found
No related merge requests found
...@@ -753,7 +753,11 @@ Map createUserFromFixture(Map userFixture) { ...@@ -753,7 +753,11 @@ Map createUserFromFixture(Map userFixture) {
"password" : userFixture.password, "password" : userFixture.password,
"first_name": userFixture.get("firstName", ""), "first_name": userFixture.get("firstName", ""),
"last_name" : userFixture.get("lastName", ""), "last_name" : userFixture.get("lastName", ""),
"email" : userFixture.get("email", "")] "email" : userFixture.get("email", ""),
"initials" : userFixture.initials,
"dataTestId" : userFixture.dataTestId,
"clientRoles" : userFixture.clientRoles,
"groups" : userFixture.groups]
} }
String getKeycloakAccessToken(String realm) { String getKeycloakAccessToken(String realm) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment