mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge branch 'master' of https://github.com/wso2/carbon-device-mgt-plugins into scope-impl
This commit is contained in:
commit
be73e9a659
@ -18,7 +18,7 @@
|
||||
|
||||
function onRequest(context) {
|
||||
var device = context.unit.params.device;
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
var constants = require("/app/modules/constants.js");
|
||||
var websocketEndpoint = devicemgtProps["httpsURL"].replace("https", "wss");
|
||||
var tokenPair = session.get(constants.ACCESS_TOKEN_PAIR_IDENTIFIER);
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
function onRequest(context){
|
||||
var viewModel = {};
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
viewModel.hostName = devicemgtProps["httpsWebURL"];
|
||||
return viewModel;
|
||||
}
|
||||
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
function onRequest(context) {
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
|
||||
var devices = context.unit.params.devices;
|
||||
var deviceType = context.uriParams.deviceType;
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
function onRequest(context) {
|
||||
var log = new Log("stats.js");
|
||||
var device = context.unit.params.device;
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
var constants = require("/app/modules/constants.js");
|
||||
var websocketEndpoint = devicemgtProps["wssURL"].replace("https", "wss");
|
||||
var tokenPair = session.get(constants.ACCESS_TOKEN_PAIR_IDENTIFIER);
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
* @returns {*} A context object that returns the dynamic state of this page to be presented
|
||||
*/
|
||||
function onRequest(context) {
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
var page = {};
|
||||
page["usernameJSRegEx"] = devicemgtProps.userValidationConfig.usernameJSRegEx;
|
||||
page["usernameHelpText"] = devicemgtProps.userValidationConfig.usernameHelpMsg;
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
function onRequest(context) {
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
|
||||
var devices = context.unit.params.devices;
|
||||
var deviceType = context.uriParams.deviceType;
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
function onRequest(context) {
|
||||
var log = new Log("stats.js");
|
||||
var device = context.unit.params.device;
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
var constants = require("/app/modules/constants.js");
|
||||
var websocketEndpoint = devicemgtProps["wssURL"].replace("https", "wss");
|
||||
var tokenPair = session.get(constants.ACCESS_TOKEN_PAIR_IDENTIFIER);
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
function onRequest(context) {
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
|
||||
var devices = context.unit.params.devices;
|
||||
var deviceType = context.uriParams.deviceType;
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
function onRequest(context) {
|
||||
var log = new Log("stats.js");
|
||||
var device = context.unit.params.device;
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
var constants = require("/app/modules/constants.js");
|
||||
var websocketEndpoint = devicemgtProps["wssURL"].replace("https", "wss");
|
||||
var tokenPair = session.get(constants.ACCESS_TOKEN_PAIR_IDENTIFIER);
|
||||
|
||||
@ -53,7 +53,6 @@ public class AndroidDevice implements Serializable {
|
||||
)
|
||||
@NotNull
|
||||
@Size(min = 2, max = 45)
|
||||
@Pattern(regexp = "^[A-Za-z0-9]*$")
|
||||
private String deviceIdentifier;
|
||||
@ApiModelProperty(
|
||||
name = "enrolmentInfo",
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
function onRequest(context){
|
||||
var viewModel = {};
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
viewModel.hostName = devicemgtProps["httpsURL"];
|
||||
return viewModel;
|
||||
}
|
||||
@ -61,11 +61,16 @@
|
||||
"copyrightSuffix" : " All Rights Reserved."
|
||||
},
|
||||
"scopes" : [
|
||||
"license-add", "license-view", "device-view", "device-info", "device-list", "device-view-own",
|
||||
"device-modify", "device-search", "operation-install", "operation-view", "operation-modify", "operation-uninstall",
|
||||
"group-add", "group-share", "group-modify", "group-view", "group-remove", "certificate-modify", "certificate-view",
|
||||
"configuration-view", "configuration-modify", "policy-view", "policy-modify", "device-notification-view",
|
||||
"device-notification-modify", "feature-view", "roles-view", "roles-modify", "roles-remove", "roles-add",
|
||||
"license-add", "license-view", "device-view",
|
||||
"device-info", "device-list", "device-view-own", "device-modify", "device-search",
|
||||
"operation-install", "operation-view", "operation-modify", "operation-uninstall",
|
||||
"group-add", "group-share", "group-modify", "group-view", "group-remove",
|
||||
"certificate-modify", "certificate-view",
|
||||
"configuration-view", "configuration-modify",
|
||||
"policy-view", "policy-modify",
|
||||
"device-notification-view", "device-notification-modify",
|
||||
"feature-view",
|
||||
"roles-view", "roles-modify", "roles-remove", "roles-add",
|
||||
"user-password-reset", "user-password-modify", "user-modify", "user-view", "user-invite", "user-remove", "user-add"
|
||||
],
|
||||
"isOAuthEnabled" : true,
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
function onRequest(context){
|
||||
var viewModel = {};
|
||||
var devicemgtProps = require('/app/conf/devicemgt-props.js').config();
|
||||
var devicemgtProps = require("/app/conf/reader/main.js")["conf"];
|
||||
viewModel.hostName = devicemgtProps["httpsURL"];
|
||||
return viewModel;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user