Assets list. Native asset updates.

refs #37
This commit is contained in:
softsimon
2020-05-02 16:29:34 +07:00
parent 65b01ccc60
commit b7ac1c85ca
13 changed files with 217 additions and 41 deletions

View File

@@ -22,8 +22,11 @@ export class AssetsService {
getAssetsMinimalJson$() {
this.httpClient.get('/assets/assets.minimal.json')
.subscribe((data) => {
console.log(data);
this.assetsMinimal$.next(data);
});
}
getAssetsJson$() {
return this.httpClient.get('/assets/assets.json');
}
}