mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
IOTS-296: Removing ownership selection when policy creation
Removes ownership selection when creating and editing policies. Ownership management is done by the groups.
This commit is contained in:
parent
3b3dd8bbd7
commit
345fdc0ced
@ -129,20 +129,6 @@
|
|||||||
<i class="icon fw fw-error"></i><span></span>
|
<i class="icon fw fw-error"></i><span></span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label class="wr-input-label">
|
|
||||||
Set device ownership type
|
|
||||||
</label>
|
|
||||||
<div class="wr-input-control">
|
|
||||||
<div class="cus-col-50">
|
|
||||||
<!--suppress HtmlFormInputWithoutLabel -->
|
|
||||||
<select id="ownership-input" class="form-control">
|
|
||||||
<option value="ANY" selected>ANY</option>
|
|
||||||
<option value="BYOD">BYOD (Bring Your Own Device)</option>
|
|
||||||
<option value="COPE">COPE (Corporate-Owned, Personally Enabled)</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<br class="c-both"/>
|
|
||||||
</div>
|
|
||||||
<div class="wr-input-control">
|
<div class="wr-input-control">
|
||||||
{{#if isAuthorizedViewRoles}}
|
{{#if isAuthorizedViewRoles}}
|
||||||
<label class="wr-input-control radio light">
|
<label class="wr-input-control radio light">
|
||||||
|
|||||||
@ -201,12 +201,11 @@ stepForwardFrom["policy-criteria"] = function () {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
policy["selectedGroups"] = $("#groups-input").val();
|
policy["selectedGroups"] = $("#groups-input").val();
|
||||||
if (policy["selectedGroups"].length > 1 || policy["selectedGroups"][0] !== "NONE") {
|
if (policy["selectedGroup"] && (policy["selectedGroups"].length > 1 || policy["selectedGroups"][0] !== "NONE")) {
|
||||||
policy["selectedGroups"] = createDeviceGroupWrapper(policy["selectedGroups"]);
|
policy["selectedGroups"] = createDeviceGroupWrapper(policy["selectedGroups"]);
|
||||||
}
|
}
|
||||||
|
|
||||||
policy["selectedNonCompliantAction"] = $("#action-input").find(":selected").data("action");
|
policy["selectedNonCompliantAction"] = $("#action-input").find(":selected").data("action");
|
||||||
policy["selectedOwnership"] = $("#ownership-input").val();
|
|
||||||
//updating next-page wizard title with selected platform
|
//updating next-page wizard title with selected platform
|
||||||
$("#policy-naming-page-wizard-title").text("ADD " + policy["platform"] + " POLICY");
|
$("#policy-naming-page-wizard-title").text("ADD " + policy["platform"] + " POLICY");
|
||||||
};
|
};
|
||||||
@ -373,7 +372,7 @@ var savePolicy = function (policy, isActive, serviceURL) {
|
|||||||
"policyName": policy["policyName"],
|
"policyName": policy["policyName"],
|
||||||
"description": policy["description"],
|
"description": policy["description"],
|
||||||
"compliance": policy["selectedNonCompliantAction"],
|
"compliance": policy["selectedNonCompliantAction"],
|
||||||
"ownershipType": policy["selectedOwnership"],
|
"ownershipType": null,
|
||||||
"active": isActive,
|
"active": isActive,
|
||||||
"profile": {
|
"profile": {
|
||||||
"profileName": policy["policyName"],
|
"profileName": policy["policyName"],
|
||||||
|
|||||||
@ -123,19 +123,6 @@
|
|||||||
<i class="icon fw fw-error"></i><span></span>
|
<i class="icon fw fw-error"></i><span></span>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label class="wr-input-label">
|
|
||||||
Set device ownership type
|
|
||||||
</label>
|
|
||||||
<div class="wr-input-control">
|
|
||||||
<div class="cus-col-50">
|
|
||||||
<select id="ownership-input" class="form-control">
|
|
||||||
<option value="ANY" selected>ANY</option>
|
|
||||||
<option value="BYOD">BYOD (Bring Your Own Device)</option>
|
|
||||||
<option value="COPE">COPE (Corporate-Owned, Personally Enabled)</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<br class="c-both"/>
|
|
||||||
</div>
|
|
||||||
<div class="wr-input-control">
|
<div class="wr-input-control">
|
||||||
{{#if isAuthorizedViewRoles}}
|
{{#if isAuthorizedViewRoles}}
|
||||||
<label class="wr-input-control radio light">
|
<label class="wr-input-control radio light">
|
||||||
|
|||||||
@ -425,7 +425,7 @@ var updatePolicy = function (policy, state) {
|
|||||||
"policyName": policy["policyName"],
|
"policyName": policy["policyName"],
|
||||||
"description": policy["description"],
|
"description": policy["description"],
|
||||||
"compliance": policy["selectedNonCompliantAction"],
|
"compliance": policy["selectedNonCompliantAction"],
|
||||||
"ownershipType": policy["selectedOwnership"],
|
"ownershipType": null,
|
||||||
"profile": {
|
"profile": {
|
||||||
"profileName": policy["policyName"],
|
"profileName": policy["policyName"],
|
||||||
"deviceType": policy["platform"],
|
"deviceType": policy["platform"],
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user