mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix admin role not assigned issue during admin user creation
This commit is contained in:
parent
8636767cba
commit
c974c4a0f0
@ -130,7 +130,9 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|||||||
private static final String API_BASE_PATH = "/users";
|
private static final String API_BASE_PATH = "/users";
|
||||||
private static final Log log = LogFactory.getLog(UserManagementServiceImpl.class);
|
private static final Log log = LogFactory.getLog(UserManagementServiceImpl.class);
|
||||||
|
|
||||||
|
private static final String ADMIN_ROLE = "admin";
|
||||||
private static final String DEFAULT_DEVICE_USER = "Internal/devicemgt-user";
|
private static final String DEFAULT_DEVICE_USER = "Internal/devicemgt-user";
|
||||||
|
private static final String DEFAULT_DEVICE_ADMIN = "Internal/devicemgt-admin";
|
||||||
private static final String DEFAULT_SUBSCRIBER = "Internal/subscriber";
|
private static final String DEFAULT_SUBSCRIBER = "Internal/subscriber";
|
||||||
|
|
||||||
// Permissions that are given for a normal device user.
|
// Permissions that are given for a normal device user.
|
||||||
@ -177,13 +179,19 @@ public class UserManagementServiceImpl implements UserManagementService {
|
|||||||
tmpRoles.add(DEFAULT_DEVICE_USER);
|
tmpRoles.add(DEFAULT_DEVICE_USER);
|
||||||
|
|
||||||
boolean subscriberFound = false;
|
boolean subscriberFound = false;
|
||||||
|
boolean adminFound = false;
|
||||||
|
|
||||||
if (userInfoRoles != null) {
|
if (userInfoRoles != null) {
|
||||||
|
|
||||||
//check if subscriber role is coming in the payload
|
//check if subscriber role is coming in the payload
|
||||||
for (String r : userInfoRoles) {
|
for (String r : userInfoRoles) {
|
||||||
if (DEFAULT_SUBSCRIBER.equals(r)) {
|
if (!subscriberFound || !adminFound) {
|
||||||
subscriberFound = true;
|
if (DEFAULT_SUBSCRIBER.equals(r)) {
|
||||||
|
subscriberFound = true;
|
||||||
|
} else if (ADMIN_ROLE.equals(r)) {
|
||||||
|
tmpRoles.add(DEFAULT_DEVICE_ADMIN);
|
||||||
|
adminFound = true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user