mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixed user search
This commit is contained in:
parent
bf5a58503a
commit
bb6d2f2012
@ -348,7 +348,7 @@ public class UserManagementServiceImpl implements UserManagementService {
|
||||
UserStoreManager userStoreManager = DeviceMgtAPIUtils.getUserStoreManager();
|
||||
|
||||
//As the listUsers function accepts limit only to accommodate offset we are passing offset + limit
|
||||
String[] users = userStoreManager.listUsers(appliedFilter, appliedLimit);
|
||||
String[] users = userStoreManager.listUsers(appliedFilter + "*", appliedLimit);
|
||||
userList = new ArrayList<>(users.length);
|
||||
BasicUserInfo user;
|
||||
for (String username : users) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user