SUPPORT-9170: add health request to auth service

This commit is contained in:
gulnaz 2025-05-16 13:35:13 +03:00
parent 84284fd96f
commit 46843a6cb4

View file

@ -13,7 +13,7 @@ export class AuthenticationService {
}
checkAuthentication(): Promise<any>{
return this.appConfigService.load();
return this.appConfigService.load().then(() => this.http.get<any>("health").toPromise());
}
logout(): Promise<any> {