Merge pull request #1135 from Kamidu/master

Enable roles containing the filter to be listed in role listing
revert-70aa11f8
Madawa Soysa 7 years ago committed by GitHub
commit 8df3999cbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -606,6 +606,8 @@ public class RoleManagementServiceImpl implements RoleManagementService {
String[] roles;
if ((filter == null) || filter.isEmpty()) {
filter = "*";
} else {
filter += "*";
}
if (log.isDebugEnabled()) {
log.debug("Getting the list of user roles");

Loading…
Cancel
Save