mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Updating operation-mod with windows operation apis
This commit is contained in:
parent
408e10a890
commit
e8571b7b65
@ -18,7 +18,6 @@
|
|||||||
{{unit "cdmf.unit.ui.title" pageTitle="Navigating Dashboard"}}
|
{{unit "cdmf.unit.ui.title" pageTitle="Navigating Dashboard"}}
|
||||||
|
|
||||||
{{#zone "breadcrumbs"}}
|
{{#zone "breadcrumbs"}}
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="{{@app.context}}/">
|
<a href="{{@app.context}}/">
|
||||||
Navigating Dashboard
|
Navigating Dashboard
|
||||||
|
|||||||
@ -1186,29 +1186,13 @@ var operationModule = function () {
|
|||||||
|
|
||||||
publicMethods.getWindowsServiceEndpoint = function (operationCode) {
|
publicMethods.getWindowsServiceEndpoint = function (operationCode) {
|
||||||
var featureMap = {
|
var featureMap = {
|
||||||
"CAMERA": "camera",
|
"DEVICE_LOCK": "lock-devices",
|
||||||
"DEVICE_LOCK": "lock",
|
"DEVICE_RING": "ring-devices",
|
||||||
"DEVICE_LOCATION": "location",
|
"LOCK_RESET": "lock-reset-devices",
|
||||||
"CLEAR_PASSWORD": "clear-password",
|
"WIPE_DATA": "wipe-devices"
|
||||||
"APPLICATION_LIST": "get-application-list",
|
|
||||||
"DEVICE_RING": "ring-device",
|
|
||||||
"DEVICE_REBOOT": "reboot-device",
|
|
||||||
"UPGRADE_FIRMWARE": "upgrade-firmware",
|
|
||||||
"DEVICE_MUTE": "mute",
|
|
||||||
"LOCK_RESET": "lock-reset",
|
|
||||||
"NOTIFICATION": "notification",
|
|
||||||
"ENCRYPT_STORAGE": "encrypt",
|
|
||||||
"CHANGE_LOCK_CODE": "change-lock-code",
|
|
||||||
"WEBCLIP": "webclip",
|
|
||||||
"INSTALL_APPLICATION": "install-application",
|
|
||||||
"UNINSTALL_APPLICATION": "uninstall-application",
|
|
||||||
"BLACKLIST_APPLICATIONS": "blacklist-applications",
|
|
||||||
"PASSCODE_POLICY": "password-policy",
|
|
||||||
"ENTERPRISE_WIPE": "enterprise-wipe",
|
|
||||||
"WIPE_DATA": "wipe-data",
|
|
||||||
"DISENROLL": "disenroll"
|
|
||||||
};
|
};
|
||||||
return "/mdm-windows-agent/services/windows/operation/" + featureMap[operationCode];
|
//return "/mdm-windows-agent/services/windows/operation/" + featureMap[operationCode];
|
||||||
|
return "/api/device-mgt/windows/v1.0/admin/devices/" + featureMap[operationCode];
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* Get the icon for the featureCode
|
* Get the icon for the featureCode
|
||||||
@ -1241,15 +1225,9 @@ var operationModule = function () {
|
|||||||
publicMethods.getWindowsIconForFeature = function (operationCode) {
|
publicMethods.getWindowsIconForFeature = function (operationCode) {
|
||||||
var featureMap = {
|
var featureMap = {
|
||||||
"DEVICE_LOCK": "fw-lock",
|
"DEVICE_LOCK": "fw-lock",
|
||||||
"DEVICE_LOCATION": "fw-map-location",
|
|
||||||
"DISENROLL": "fw-delete",
|
|
||||||
"WIPE_DATA": "fw-clear",
|
|
||||||
"DEVICE_RING": "fw-dial-up",
|
"DEVICE_RING": "fw-dial-up",
|
||||||
"DEVICE_REBOOT": "fw-refresh",
|
"LOCK_RESET": "fw-key",
|
||||||
"UPGRADE_FIRMWARE": "fw-up-arrow",
|
"WIPE_DATA": "fw-clear"
|
||||||
"DEVICE_MUTE": "fw-incoming-call",
|
|
||||||
"NOTIFICATION": "fw-message",
|
|
||||||
"LOCK_RESET": "fw-key"
|
|
||||||
};
|
};
|
||||||
return featureMap[operationCode];
|
return featureMap[operationCode];
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user