mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Fix ent.app install issue when installing via roles
This commit is contained in:
parent
d0466fb79a
commit
ba24c1a03e
@ -109,8 +109,13 @@ public class ApplicationOperationsImpl implements ApplicationOperations {
|
|||||||
.getDeviceManagementService(applicationOperationAction.getTenantId()).
|
.getDeviceManagementService(applicationOperationAction.getTenantId()).
|
||||||
getAllDevicesOfRole(userRole);
|
getAllDevicesOfRole(userRole);
|
||||||
for (org.wso2.carbon.device.mgt.common.Device device : deviceList) {
|
for (org.wso2.carbon.device.mgt.common.Device device : deviceList) {
|
||||||
if (MDMAppConstants.ACTIVE.equalsIgnoreCase(device.getEnrolmentInfo().getStatus().toString())) {
|
if (MDMAppConstants.WEBAPP.equals(applicationOperationAction.getApp().getPlatform())
|
||||||
deviceIdentifiers.add(getDeviceIdentifierByDevice(device));
|
|| applicationOperationAction.getApp().getPlatform()
|
||||||
|
.equalsIgnoreCase(device.getType())) {
|
||||||
|
if (MDMAppConstants.ACTIVE
|
||||||
|
.equalsIgnoreCase(device.getEnrolmentInfo().getStatus().toString())) {
|
||||||
|
deviceIdentifiers.add(getDeviceIdentifierByDevice(device));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user