SUPPORT-9170: add health request to auth service

This commit is contained in:
gulnaz 2025-05-16 13:34:33 +03:00
parent 7a0d568de1
commit 21638cad33

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<string> {