mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge branch 'master' into 'master'
Fix policy not loading due to missing comma in js See merge request entgra/carbon-device-mgt-plugins!148
This commit is contained in:
commit
7fbec92797
@ -136,7 +136,7 @@ var androidOperationModule = function () {
|
||||
"passcodePolicyMaxPasscodeAgeInDays": operationPayload["maxPINAgeInDays"],
|
||||
"passcodePolicyPasscodeHistory": operationPayload["pinHistory"],
|
||||
"maximumNumberOfFailedAttemptsBeforeDeviceLock": operationPayload["maxFailedAttemptsDeviceLock"],
|
||||
"maximumNumberOfFailedAttemptsBeforeDeviceWipe": operationPayload["maxFailedAttemptsDeviceWipe"]
|
||||
"maximumNumberOfFailedAttemptsBeforeDeviceWipe": operationPayload["maxFailedAttemptsDeviceWipe"],
|
||||
"passcodePolicyMaxTimeToLock": operationPayload["maxTimeToLock"],
|
||||
"passcodePolicyWPExist": operationPayload["passcodePolicyWPExist"]
|
||||
};
|
||||
@ -578,7 +578,7 @@ var androidOperationModule = function () {
|
||||
"maxPINAgeInDays": operationData["passcodePolicyMaxPasscodeAgeInDays"],
|
||||
"pinHistory": operationData["passcodePolicyPasscodeHistory"],
|
||||
"maxTimeToLock": operationData["passcodePolicyMaxTimeToLock"],
|
||||
"passcodePolicyWPExist": operationData["passcodePolicyWPExist"]
|
||||
"passcodePolicyWPExist": operationData["passcodePolicyWPExist"],
|
||||
"maxFailedAttemptsDeviceLock": operationData["maximumNumberOfFailedAttemptsBeforeDeviceLock"],
|
||||
"maxFailedAttemptsDeviceWipe": operationData["maximumNumberOfFailedAttemptsBeforeDeviceWipe"]
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user