mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge branch 'master' of https://github.com/wso2/carbon-device-mgt-plugins
This commit is contained in:
commit
1f247e7faf
@ -285,6 +285,9 @@ public class AndroidAPIUtils {
|
||||
OperationCodes.DEVICE_INFO.equals(operation.getCode())) {
|
||||
|
||||
try {
|
||||
if (log.isDebugEnabled()){
|
||||
log.debug("Operation response: " + operation.getOperationResponse());
|
||||
}
|
||||
Device device = new Gson().fromJson(operation.getOperationResponse(), Device.class);
|
||||
org.wso2.carbon.device.mgt.common.device.details.DeviceInfo deviceInfo = convertDeviceToInfo(device);
|
||||
updateDeviceInfo(deviceIdentifier, deviceInfo);
|
||||
@ -403,8 +406,6 @@ public class AndroidAPIUtils {
|
||||
}
|
||||
} else {
|
||||
if (prop.getName().equalsIgnoreCase("CPU_INFO")) {
|
||||
deviceInfo.setTotalRAMMemory(Double.parseDouble(getProperty(prop.getValue(), "User")));
|
||||
|
||||
deviceInfo.getDeviceDetailsMap().put("cpuUser",
|
||||
getProperty(prop.getValue(), "User"));
|
||||
deviceInfo.getDeviceDetailsMap().put("cpuSystem",
|
||||
|
||||
@ -39,6 +39,13 @@
|
||||
<method>GET</method>
|
||||
</Permission>
|
||||
|
||||
<Permission>
|
||||
<name>Modify Tenant configuration</name>
|
||||
<path>/device-mgt/admin/platform-configs/add</path>
|
||||
<url>/configuration</url>
|
||||
<method>PUT</method>
|
||||
</Permission>
|
||||
|
||||
<Permission>
|
||||
<name>Add Tenant configuration</name>
|
||||
<path>/device-mgt/admin/platform-configs/add</path>
|
||||
|
||||
@ -19,10 +19,12 @@
|
||||
function onRequest(context) {
|
||||
var userModule = require("/app/modules/business-controllers/user.js")["userModule"];
|
||||
var generalConfig = context.app.conf["generalConfig"];
|
||||
var mdmProps = require('/app/conf/reader/main.js')["conf"];
|
||||
|
||||
context["permissions"] = userModule.getUIPermissions();
|
||||
new Log().info("## Permissions : "+ stringify(userModule.getUIPermissions()));
|
||||
context["enrollmentURL"] = generalConfig["host"] + generalConfig["enrollmentDir"];
|
||||
|
||||
return context;
|
||||
var viewModel = {};
|
||||
viewModel.permissions = userModule.getUIPermissions();
|
||||
new Log().debug("## Permissions : " + stringify(userModule.getUIPermissions()));
|
||||
//TODO: Move enrollment URL into app-conf.json
|
||||
viewModel.enrollmentURL = mdmProps.enrollmentUrl;
|
||||
return viewModel;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user