Nodes per ISP list component

This commit is contained in:
nymkappa
2022-07-17 22:57:29 +02:00
parent 93e93d44f4
commit dbf60dd4d9
10 changed files with 241 additions and 7 deletions

View File

@@ -258,4 +258,8 @@ export class ApiService {
getNodeForCountry$(country: string): Observable<any> {
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/lightning/nodes/country/' + country);
}
getNodeForISP$(isp: string): Observable<any> {
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/lightning/nodes/isp/' + isp);
}
}