mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
added handling login error to the get customers method
This commit is contained in:
parent
4db470f7fc
commit
c5081f6e38
|
@ -73,8 +73,17 @@ export class AstuteClientService {
|
|||
return this.http.get(url)
|
||||
.toPromise()
|
||||
.then(response => {
|
||||
console.log(response['entity']);
|
||||
return response['entity'];
|
||||
const message = response['message'];
|
||||
if (message === 'Success') {
|
||||
console.log(response['entity']);
|
||||
return response['entity'];
|
||||
} else if (message.includes('login')) {
|
||||
alert('Please login again!');
|
||||
} else {
|
||||
alert('Get Customers Failed: ' + message);
|
||||
}
|
||||
}, (reason) => {
|
||||
alert('Get Customers Failed: ' + reason);
|
||||
})
|
||||
.catch( error => {
|
||||
alert(error);
|
||||
|
|
Loading…
Reference in New Issue
Block a user