mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
policy filtering or cloud
This commit is contained in:
parent
6ad4a2634b
commit
4cb816cb7f
@ -50,17 +50,17 @@ function onRequest(context) {
|
||||
var policyOperationsTemplateSrc = policyWizardSrc + "/public/templates/" + deviceType + "-policy-operations.hbs";
|
||||
if (new File(policyOperationsTemplateSrc).isExists()) {
|
||||
content["template"] = "/public/cdmf.unit.device.type." + deviceType +
|
||||
".policy-wizard/templates/" + deviceType + "-policy-operations.hbs";
|
||||
".policy-wizard/templates/" + deviceType + "-policy-operations.hbs";
|
||||
}
|
||||
var policyOperationsScriptSrc = policyWizardSrc + "/public/js/" + deviceType + "-policy-operations.js";
|
||||
if (new File(policyOperationsScriptSrc).isExists()) {
|
||||
content["script"] = "/public/cdmf.unit.device.type." + deviceType +
|
||||
".policy-wizard/js/" + deviceType + "-policy-operations.js";;
|
||||
".policy-wizard/js/" + deviceType + "-policy-operations.js";;
|
||||
}
|
||||
var policyOperationsStylesSrc = policyWizardSrc + "/public/css/" + deviceType + "-policy-operations.css";
|
||||
if (new File(policyOperationsStylesSrc).isExists()) {
|
||||
content["style"] = "/public/cdmf.unit.device.type." + deviceType +
|
||||
".policy-wizard/css/" + deviceType + "-policy-operations.css";;
|
||||
".policy-wizard/css/" + deviceType + "-policy-operations.css";;
|
||||
}
|
||||
types["types"].push(content);
|
||||
}
|
||||
@ -74,6 +74,8 @@ function onRequest(context) {
|
||||
types["roles"] = roles["content"];
|
||||
}
|
||||
types["groups"] = groupModule.getGroups();
|
||||
|
||||
var devicemgtProps = require("/app/modules/conf-reader/main.js")["conf"];
|
||||
types["isCloud"] = devicemgtProps.isCloud;
|
||||
|
||||
return types;
|
||||
}
|
||||
|
||||
@ -146,7 +146,7 @@ stepForwardFrom["policy-platform"] = function (actionButton) {
|
||||
|
||||
if (policyOperationsTemplateSrc) {
|
||||
$.template(policyOperationsTemplateCacheKey, context + policyOperationsTemplateSrc, function (template) {
|
||||
var content = template();
|
||||
var content = template({"iscloud" : $("#logged-in-user").data("iscloud")});
|
||||
$("#device-type-policy-operations").html(content).removeClass("hidden");
|
||||
$(".policy-platform").addClass("hidden");
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user