mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request 'Fix API publisher to update scopes including already existing roles' (#224) from pasindu/device-mgt-core:Bug10322 into master
Reviewed-on: https://repository.entgra.net/community/device-mgt-core/pulls/224
This commit is contained in:
commit
64cb1be253
@ -513,8 +513,15 @@ public class APIPublisherServiceImpl implements APIPublisherService {
|
||||
if (scopeObj.getString("name").equals(scopeMapping[2] != null ?
|
||||
StringUtils.trim(scopeMapping[2]) : StringUtils.EMPTY)) {
|
||||
scope.setId(scopeObj.getString("id"));
|
||||
|
||||
// Including already existing roles
|
||||
JSONArray existingRolesArray = (JSONArray) scopeObj.get("bindings");
|
||||
for (int j = 0; j < existingRolesArray.length(); j++) {
|
||||
roleString = roleString + "," + existingRolesArray.get(j);
|
||||
}
|
||||
}
|
||||
}
|
||||
scope.setRoles(roleString);
|
||||
|
||||
if (publisherRESTAPIServices.isSharedScopeNameExists(apiApplicationKey, accessTokenInfo, scope.getKey())) {
|
||||
publisherRESTAPIServices.updateSharedScope(apiApplicationKey, accessTokenInfo, scope);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user