(cherry picked from commit e6d13fcf5961cb5ee52908a4c8cbb09ae7d6f17b)
This commit is contained in:
Eduard Tihomirov 2024-10-24 13:00:01 +03:00
parent ae6b1f19fe
commit 831b3477b7

View file

@ -27,8 +27,8 @@ export class LogOutComponent implements OnInit{
} }
} }
public logout(): void { logout(): Promise<any> {
this.httpClient.get<any>("esia/logout").toPromise(); return this.httpClient.post<any>('esia/logout', {}).toPromise();
} }
public getUserFullname(): string { public getUserFullname(): string {