X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=webapp-frontend%2Fsrc%2Fapp%2Fservices%2Fcatalog%2Fcatalog.service.ts;h=a67e98a122432e3e7b016220744342c3f2427227;hb=1275b31b7d0d4b9056e671614761452c151be008;hp=95b8662478d529072a1ea2bab1c8eb89eed897c4;hpb=bda70e88ca63203c5a8cc034e824ec5855c32e4b;p=portal%2Fric-dashboard.git diff --git a/webapp-frontend/src/app/services/catalog/catalog.service.ts b/webapp-frontend/src/app/services/catalog/catalog.service.ts index 95b86624..a67e98a1 100644 --- a/webapp-frontend/src/app/services/catalog/catalog.service.ts +++ b/webapp-frontend/src/app/services/catalog/catalog.service.ts @@ -30,5 +30,14 @@ export class CatalogService { getAll() { return this.http.get('api/xappmgr/xapps'); } + + deployXapp(name) { + console.log(name); + return this.http.post('api/xappmgr/xapps', + { + "xAppName": "string", + "xappName": name + }); + } }