Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 2x 1x 1x 1x 1x 1x | import { HttpClient } from '@angular/common/http';
import { inject, Injectable } from '@angular/core';
import { AppHttpHandlersService } from '@app/client-store-http-progress';
import { IPingResponse } from '../../http-api.interface';
/**
* Http API service.
*/
@Injectable({
providedIn: 'root',
})
export class AppHttpApiService {
private readonly httpClient = inject(HttpClient);
private readonly httpHandlers = inject(AppHttpHandlersService);
public ping() {
const endpoint = this.httpHandlers.getEndpoint('auth');
const observable = this.httpClient.get<IPingResponse>(endpoint);
return this.httpHandlers.pipeHttpResponse<IPingResponse>(observable);
}
}
|