Search roles with partial role names

This commit is contained in:
prathabanKavin 2023-11-03 00:38:22 +05:30
parent cdf3e2717a
commit fe9273ab45

View File

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