diff options
Diffstat (limited to 'usecaseui-portal/src/app/myhttp.service.ts')
-rw-r--r-- | usecaseui-portal/src/app/myhttp.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/myhttp.service.ts b/usecaseui-portal/src/app/myhttp.service.ts index 0496eed9..7c77e973 100644 --- a/usecaseui-portal/src/app/myhttp.service.ts +++ b/usecaseui-portal/src/app/myhttp.service.ts @@ -174,7 +174,7 @@ export class MyhttpService { // Create interface createInstance(requestBody, createParams) { // return this.http.get<any>(this.url.createService + createParams); //Local simulation - return this.http.post<any>(this.url.createService, requestBody); + return this.http.post<any>(this.url.createService + createParams, requestBody); } nsCreateInstance(requestBody) { // return this.http.get<any>(this.url.ns_createService); //Local simulation |