Sprint 9: add tenant-driven API resolution layer

This commit is contained in:
sdarbinyan
2026-07-05 02:24:16 +04:00
parent c3d1153f0e
commit 487a3fb913
12 changed files with 197 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
import { Injectable, inject } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { ApiConfigService } from '../core/config/api-config.service';
@Injectable({ providedIn: 'root' })
export class ApiHealthService {
private readonly http = inject(HttpClient);
private readonly apiConfig = inject(ApiConfigService);
ping(): Observable<{ message: string }> {
return this.http.get<{ message: string }>(`${this.apiConfig.getBaseUrl()}/ping`);
}
}