X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fservices%2Fxapp-mgr%2Fxapp-mgr.service.ts;h=48132d22f90aa7a49b0591e6d485a235966d0d96;hb=1fde0c3b93c9cf75b9e48382f298f644b03fa249;hp=daef3e07c5f7090cb5864ce0c4a4992e7f299418;hpb=3e69af1763ea2ce5f9485ab1cb5a39b089b109a7;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/services/xapp-mgr/xapp-mgr.service.ts b/webapp-frontend/src/app/services/xapp-mgr/xapp-mgr.service.ts index daef3e07..48132d22 100644 --- a/webapp-frontend/src/app/services/xapp-mgr/xapp-mgr.service.ts +++ b/webapp-frontend/src/app/services/xapp-mgr/xapp-mgr.service.ts @@ -32,8 +32,8 @@ export class XappMgrService { private basePath = 'api/xappmgr/xapps'; - getAll(){ - return this.httpClient.get(this.basePath); + getAll(): Observable{ + return this.httpClient.get(this.basePath) } deployXapp(name: string) { @@ -45,4 +45,4 @@ export class XappMgrService { return this.httpClient.delete((this.basePath + '/' + name), { observe: 'response' }); } -} \ No newline at end of file +}