mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Updating policy UIs with API method updates
This commit is contained in:
parent
eea91960b7
commit
617849c053
@ -215,7 +215,7 @@ $(document).ready(function () {
|
|||||||
|
|
||||||
// on-click function for policy un-publishing "yes" button
|
// on-click function for policy un-publishing "yes" button
|
||||||
$("a#unpublish-policy-yes-link").click(function () {
|
$("a#unpublish-policy-yes-link").click(function () {
|
||||||
invokerUtil.put(
|
invokerUtil.post(
|
||||||
serviceURL,
|
serviceURL,
|
||||||
policyList,
|
policyList,
|
||||||
// on success
|
// on success
|
||||||
@ -268,7 +268,7 @@ $(document).ready(function () {
|
|||||||
|
|
||||||
// on-click function for policy removing "yes" button
|
// on-click function for policy removing "yes" button
|
||||||
$("a#publish-policy-yes-link").click(function () {
|
$("a#publish-policy-yes-link").click(function () {
|
||||||
invokerUtil.put(
|
invokerUtil.post(
|
||||||
serviceURL,
|
serviceURL,
|
||||||
policyList,
|
policyList,
|
||||||
// on success
|
// on success
|
||||||
|
|||||||
@ -2038,7 +2038,7 @@ var updatePolicy = function (policy, state) {
|
|||||||
policyList.push(getParameterByName("id"));
|
policyList.push(getParameterByName("id"));
|
||||||
if (state == "save") {
|
if (state == "save") {
|
||||||
serviceURL = "/api/device-mgt/v1.0/policies/deactivate-policy";
|
serviceURL = "/api/device-mgt/v1.0/policies/deactivate-policy";
|
||||||
invokerUtil.put(
|
invokerUtil.post(
|
||||||
serviceURL,
|
serviceURL,
|
||||||
policyList,
|
policyList,
|
||||||
// on success
|
// on success
|
||||||
@ -2055,7 +2055,7 @@ var updatePolicy = function (policy, state) {
|
|||||||
);
|
);
|
||||||
} else if (state == "publish") {
|
} else if (state == "publish") {
|
||||||
serviceURL = "/api/device-mgt/v1.0/policies/activate-policy";
|
serviceURL = "/api/device-mgt/v1.0/policies/activate-policy";
|
||||||
invokerUtil.put(
|
invokerUtil.post(
|
||||||
serviceURL,
|
serviceURL,
|
||||||
policyList,
|
policyList,
|
||||||
// on success
|
// on success
|
||||||
|
|||||||
@ -1824,7 +1824,7 @@ var updatePolicy = function (policy, state) {
|
|||||||
var policyList = [];
|
var policyList = [];
|
||||||
policyList.push(getParameterByName("id"));
|
policyList.push(getParameterByName("id"));
|
||||||
serviceURL = base_api_url + "/policies/deactivate-policy";
|
serviceURL = base_api_url + "/policies/deactivate-policy";
|
||||||
invokerUtil.put(
|
invokerUtil.post(
|
||||||
serviceURL,
|
serviceURL,
|
||||||
policyList,
|
policyList,
|
||||||
// on success
|
// on success
|
||||||
@ -1841,7 +1841,7 @@ var updatePolicy = function (policy, state) {
|
|||||||
var policyList = [];
|
var policyList = [];
|
||||||
policyList.push(getParameterByName("id"));
|
policyList.push(getParameterByName("id"));
|
||||||
serviceURL = base_api_url + "/policies/activate-policy";
|
serviceURL = base_api_url + "/policies/activate-policy";
|
||||||
invokerUtil.put(
|
invokerUtil.post(
|
||||||
serviceURL,
|
serviceURL,
|
||||||
policyList,
|
policyList,
|
||||||
// on success
|
// on success
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user