Removing /liquid from asset grouping base path.

This commit is contained in:
softsimon 2022-02-06 20:03:06 +04:00
parent 01d6f4f737
commit 99c7d7fac4
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -118,11 +118,11 @@ export class ApiService {
} }
listFeaturedAssets$(): Observable<any[]> { listFeaturedAssets$(): Observable<any[]> {
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/assets/featured'); return this.httpClient.get<any[]>(this.apiBaseUrl + '/api/v1/assets/featured');
} }
getAssetGroup$(id: string): Observable<any> { getAssetGroup$(id: string): Observable<any> {
return this.httpClient.get<any[]>(this.apiBaseUrl + this.apiBasePath + '/api/v1/assets/group/' + id); return this.httpClient.get<any[]>(this.apiBaseUrl + '/api/v1/assets/group/' + id);
} }
postTransaction$(hexPayload: string): Observable<any> { postTransaction$(hexPayload: string): Observable<any> {