mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request #892 from Kamidu/master
Device cloud related ui improvments
This commit is contained in:
commit
41e9833c5b
@ -116,6 +116,11 @@ var invokers = function () {
|
||||
log.debug("Request payload if any : " + stringify(requestPayload));
|
||||
log.debug("Response status : " + xmlHttpRequest.status);
|
||||
log.debug("Response payload if any : " + xmlHttpRequest.responseText);
|
||||
if (devicemgtProps["isCloud"]) {
|
||||
log.info("Request : " + httpMethod + " " + endpoint);
|
||||
log.info("Request payload if any : " + stringify(requestPayload));
|
||||
log.info("Response status : " + xmlHttpRequest.status);
|
||||
}
|
||||
|
||||
if (xmlHttpRequest.status == 401) {
|
||||
if ((xmlHttpRequest.responseText == TOKEN_EXPIRED ||
|
||||
|
||||
@ -27,13 +27,20 @@
|
||||
Platform Configurations
|
||||
</h1>
|
||||
<br>
|
||||
{{#if isCloud}}
|
||||
iOS Mobile Management Specific Server Settings for the Tenant
|
||||
{{else}}
|
||||
General and Platform Specific Server Settings for the Tenant
|
||||
{{/if}}
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<div class="wr-advance-operations">
|
||||
<div class="row no-gutter">
|
||||
<div class="wr-hidden-operations-nav col-lg-4">
|
||||
|
||||
{{#unless isCloud}}
|
||||
<a id="generalConfigLink" href="javascript:void(0)" onclick="showAdvanceOperation('general', this)" class="selected">
|
||||
<span class="wr-hidden-operations-icon fw-stack">
|
||||
<i class="fw fw-settings fw-stack-2x"></i>
|
||||
@ -45,8 +52,12 @@
|
||||
</span>
|
||||
General Configurations
|
||||
</a>
|
||||
{{/unless}}
|
||||
{{#each deviceTypes}}
|
||||
<a id="{{name}}ConfigLink" href="javascript:void(0)" onclick="showAdvanceOperation('{{name}}', this)">
|
||||
<a id="{{name}}ConfigLink" href="javascript:void(0)" onclick="showAdvanceOperation('{{name}}', this)"
|
||||
{{#if isCloud}}
|
||||
class="selected"
|
||||
{{/if}} >
|
||||
<span class="wr-hidden-operations-icon fw-stack">
|
||||
<i class="fw fw-settings fw-stack-2x"></i>
|
||||
<span class="fw-stack fw-move-right fw-move-bottom">
|
||||
@ -62,6 +73,7 @@
|
||||
|
||||
<div class="wr-hidden-operations-content col-lg-8">
|
||||
<!-- general -->
|
||||
{{#unless isCloud}}
|
||||
<div class="wr-hidden-operation" data-operation="general" style="display: block">
|
||||
<div class="panel panel-default">
|
||||
<div id="general-config-heading" class="panel-heading" role="tab">
|
||||
@ -106,6 +118,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{/unless}}
|
||||
<!-- general-->
|
||||
{{#each deviceTypes}}
|
||||
<div class="wr-hidden-operation" data-operation="{{name}}" style="display: none;">
|
||||
|
||||
@ -18,6 +18,7 @@
|
||||
|
||||
function onRequest(context) {
|
||||
var utility = require("/app/modules/utility.js").utility;
|
||||
var mdmProps = require("/app/modules/conf-reader/main.js")["conf"];
|
||||
var deviceModule = require("/app/modules/business-controllers/device.js")["deviceModule"];
|
||||
//get all device types
|
||||
var isAuthorized = false;
|
||||
@ -49,6 +50,7 @@ function onRequest(context) {
|
||||
}
|
||||
return {
|
||||
"deviceTypes": deviceTypesArray,
|
||||
"isAuthorized": isAuthorized
|
||||
"isAuthorized": isAuthorized,
|
||||
"isCloud": mdmProps["isCloud"]
|
||||
};
|
||||
}
|
||||
|
||||
@ -175,7 +175,7 @@
|
||||
Upgrade Now
|
||||
</a>
|
||||
<a href="{{Main.Account.dropDown.[Request Extension].url}}" id="expire-req-ext-link" class="btn-operations">
|
||||
Request Exception
|
||||
Request Extension
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -95,15 +95,35 @@
|
||||
{{/if}}
|
||||
|
||||
{{#if permissions.TENANT_CONFIGURATION}}
|
||||
<li><a><i class="fw fw-settings"></i>Configuration Management</a>
|
||||
{{#if isCloud}}
|
||||
|
||||
<li>
|
||||
<a href="{{@app.context}}/platform-configuration"><i class="fw fw-service"></i>
|
||||
Platform Configurations
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
{{else}}
|
||||
|
||||
<li>
|
||||
<a><i class="fw fw-settings"></i>Configuration Management</a>
|
||||
<ul>
|
||||
<li><a href="{{@app.context}}/platform-configuration"><i class="fw fw-service"></i>Platform Configurations</a>
|
||||
<li>
|
||||
<a href="{{@app.context}}/platform-configuration"><i class="fw fw-service"></i>
|
||||
Platform Configurations
|
||||
</a>
|
||||
</li>
|
||||
<!-- todo change the permission and get the related permission -->
|
||||
<li><a href="{{@app.context}}/certificates"><i class="fw fw-security-policy"></i>Certificate Configurations</a>
|
||||
<li>
|
||||
<a href="{{@app.context}}/certificates"><i class="fw fw-security-policy"></i>
|
||||
Certificate Configurations
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user