mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Load both active & inactive devices in APPM device installation
This commit is contained in:
parent
cee3ef55d1
commit
3bf3dfd2e7
@ -138,7 +138,6 @@ class DeviceInstall extends React.Component {
|
|||||||
const extraParams = {
|
const extraParams = {
|
||||||
offset: 10 * (currentPage - 1), // calculate the offset
|
offset: 10 * (currentPage - 1), // calculate the offset
|
||||||
limit: 10,
|
limit: 10,
|
||||||
status: 'ACTIVE',
|
|
||||||
requireDeviceInfo: true,
|
requireDeviceInfo: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -146,11 +145,11 @@ class DeviceInstall extends React.Component {
|
|||||||
extraParams.type = deviceType;
|
extraParams.type = deviceType;
|
||||||
}
|
}
|
||||||
|
|
||||||
// note: encode with '%26' not '&'
|
let encodedExtraParams = Object.keys(extraParams)
|
||||||
const encodedExtraParams = Object.keys(extraParams)
|
|
||||||
.map(key => key + '=' + extraParams[key])
|
.map(key => key + '=' + extraParams[key])
|
||||||
.join('&');
|
.join('&');
|
||||||
|
|
||||||
|
encodedExtraParams += '&status=ACTIVE&status=INACTIVE'; // fetch only active and inactive devices
|
||||||
// send request to the invoker
|
// send request to the invoker
|
||||||
axios
|
axios
|
||||||
.get(
|
.get(
|
||||||
|
|||||||
@ -136,18 +136,18 @@ class DeviceUninstall extends React.Component {
|
|||||||
const extraParams = {
|
const extraParams = {
|
||||||
offset: 10 * (currentPage - 1), // calculate the offset
|
offset: 10 * (currentPage - 1), // calculate the offset
|
||||||
limit: 10,
|
limit: 10,
|
||||||
status: 'ACTIVE',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if (deviceType !== 'ANY') {
|
if (deviceType !== 'ANY') {
|
||||||
extraParams.type = deviceType;
|
extraParams.type = deviceType;
|
||||||
}
|
}
|
||||||
|
|
||||||
// note: encode with '%26' not '&'
|
let encodedExtraParams = Object.keys(extraParams)
|
||||||
const encodedExtraParams = Object.keys(extraParams)
|
|
||||||
.map(key => key + '=' + extraParams[key])
|
.map(key => key + '=' + extraParams[key])
|
||||||
.join('&');
|
.join('&');
|
||||||
|
|
||||||
|
encodedExtraParams += '&status=ACTIVE&status=INACTIVE'; // fetch only active and inactive devices
|
||||||
|
|
||||||
const uuid = this.props.uuid;
|
const uuid = this.props.uuid;
|
||||||
axios
|
axios
|
||||||
.get(
|
.get(
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user