mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Refactored device.js
This commit is contained in:
parent
6cff453b24
commit
18ccb8ec03
@ -263,7 +263,9 @@ deviceModule = function () {
|
|||||||
url, function (responsePayload) {
|
url, function (responsePayload) {
|
||||||
if(!responsePayload["responseText"]){
|
if(!responsePayload["responseText"]){
|
||||||
log.error("Error while fetching device count. API `" + url + "` returns HTTP: " + responsePayload["status"]);
|
log.error("Error while fetching device count. API `" + url + "` returns HTTP: " + responsePayload["status"]);
|
||||||
throw constants["ERRORS"]["UNKNOWN_ERROR"];
|
userModule.logout(function () {
|
||||||
|
response.sendRedirect(devicemgtProps["appContext"] + "login");
|
||||||
|
});
|
||||||
}
|
}
|
||||||
return parse(responsePayload["responseText"])["count"];
|
return parse(responsePayload["responseText"])["count"];
|
||||||
},
|
},
|
||||||
@ -304,7 +306,9 @@ deviceModule = function () {
|
|||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
log.error("User object was not found in the session");
|
log.error("User object was not found in the session");
|
||||||
throw constants["ERRORS"]["USER_NOT_FOUND"];
|
userModule.logout(function () {
|
||||||
|
response.sendRedirect(devicemgtProps["appContext"] + "login");
|
||||||
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user