diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/conf/config.json b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/conf/config.json index 4c385b0123..4a75088a26 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/conf/config.json +++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/conf/config.json @@ -1,6 +1,6 @@ { "appContext": "/devicemgt/", - "isCloud": false, + "isCloud": true, "cloudConfig": { "upgradeNowURL": "https://cloudmgt.clouddev.wso2.com/cloudmgt/site/pages/payment-plans.jag?cloud-type=device_cloud", "monetizationURL": "https://cloudmgt.clouddev.wso2.com/cloudmgt/site/pages/monetization-dashboard.jag", diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.header.cloud.user-menu/user-menu.js b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.header.cloud.user-menu/user-menu.js index 03d61cad53..c5aa26981e 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.header.cloud.user-menu/user-menu.js +++ b/components/device-mgt/org.wso2.carbon.device.mgt.ui/src/main/resources/jaggeryapps/devicemgt/app/units/cdmf.unit.ui.header.cloud.user-menu/user-menu.js @@ -18,6 +18,7 @@ function onRequest(context) { var constants = require("/app/modules/constants.js"); + var mdmProps = require("/app/modules/conf-reader/main.js")["conf"]; var user = context.user; var isSuperTenant = false; if (user.tenantId == -1234){ @@ -26,5 +27,19 @@ function onRequest(context) { var viewModal = {}; viewModal.isSuperTenant = isSuperTenant; viewModal.USER_SESSION_KEY = session.get(constants["USER_SESSION_KEY"]); + viewModal.isCloud = mdmProps.isCloud; + viewModal.contactUsURL = mdmProps.cloudConfig.contactUsURL; + viewModal.apiCloudDocURL = mdmProps.cloudConfig.apiCloudDocURL; + viewModal.appCloudDocURL = mdmProps.cloudConfig.appCloudDocURL; + viewModal.deviceCloudDocURL = mdmProps.cloudConfig.deviceCloudDocURL; + viewModal.apiCloudWalkthroughURL = mdmProps.cloudConfig.apiCloudWalkthroughURL; + viewModal.profileURL = mdmProps.cloudConfig.profileURL; + viewModal.changePasswordURL = mdmProps.cloudConfig.changePasswordURL; + viewModal.logoutURL = mdmProps.cloudConfig.logoutURL; + viewModal.apiCloudURL = mdmProps.cloudConfig.apiCloudURL; + viewModal.appCloudURL = mdmProps.cloudConfig.appCloudURL; + viewModal.deviceCloudURL = mdmProps.cloudConfig.deviceCloudURL; + viewModal.oraganizationURL = mdmProps.cloudConfig.oraganizationURL; + viewModal.membersURL = mdmProps.cloudConfig.membersURL; return viewModal; }