Skip to content

Commit

Permalink
Merge pull request #17 from Onlineberatung/develop
Browse files Browse the repository at this point in the history
merge with OS
  • Loading branch information
tkuzynow authored Oct 11, 2023
2 parents e26a730 + cf6bdb6 commit 7a3bf19
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public class KeycloakAddRolesToUsersWithRoleTask extends MigrationTasks {
public void execute(Database database) {
if (roleNames != null) {
KeycloakService keycloakService = BeanAwareSpringLiquibase.getBean(KeycloakService.class);
keycloakService.addRolesToUsersWithRoleName(roleNameToSearchForUsers, List.of(roleNames.split(SPLIT_CHAR)));
keycloakService.addRolesToUsersWithRoleName(
roleNameToSearchForUsers, List.of(roleNames.split(SPLIT_CHAR)));
}
}
}

0 comments on commit 7a3bf19

Please sign in to comment.