Add nodes AS share chart and table component

This commit is contained in:
nymkappa
2022-07-16 10:44:05 +02:00
parent 2fd34cbd91
commit 28cf0f71eb
8 changed files with 299 additions and 1 deletions

View File

@@ -251,4 +251,7 @@ export class ApiService {
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/lightning/search', { params });
}
getNodesPerAs(): Observable<any> {
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/lightning/nodes/asShare');
}
}