mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix user search by Firstname and Lastname
This commit is contained in:
parent
d050736aaf
commit
97b690b8ef
@ -574,7 +574,7 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|||||||
basicUserInfo.setEmailAddress(getClaimValue(user, Constants.USER_CLAIM_EMAIL_ADDRESS));
|
basicUserInfo.setEmailAddress(getClaimValue(user, Constants.USER_CLAIM_EMAIL_ADDRESS));
|
||||||
basicUserInfo.setFirstname(getClaimValue(user, Constants.USER_CLAIM_FIRST_NAME));
|
basicUserInfo.setFirstname(getClaimValue(user, Constants.USER_CLAIM_FIRST_NAME));
|
||||||
basicUserInfo.setLastname(getClaimValue(user, Constants.USER_CLAIM_LAST_NAME));
|
basicUserInfo.setLastname(getClaimValue(user, Constants.USER_CLAIM_LAST_NAME));
|
||||||
basicUserInfo.setRemovable(isUserRemovable(username));
|
basicUserInfo.setRemovable(isUserRemovable(user));
|
||||||
filteredUserList.add(basicUserInfo);
|
filteredUserList.add(basicUserInfo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user