diff options
author | 2019-09-12 06:22:48 +0000 | |
---|---|---|
committer | 2019-09-12 06:22:48 +0000 | |
commit | e779979ec9c7bbb18711339a26c4706a7096f7cc (patch) | |
tree | ea7ae0b2c3218ec173c9c736cac0e2b0f42b6692 /usecaseui-portal/src/app/core | |
parent | 28071f9059054e48105b9edac78cfb55415f40df (diff) | |
parent | 82ff35f629b05d57b9ec9f24f7189af4a10fceca (diff) |
Merge "feat:optimize mock api & routes.js for customer page"
Diffstat (limited to 'usecaseui-portal/src/app/core')
-rw-r--r-- | usecaseui-portal/src/app/core/services/managemencs.service.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usecaseui-portal/src/app/core/services/managemencs.service.ts b/usecaseui-portal/src/app/core/services/managemencs.service.ts index cd293d40..d7780e73 100644 --- a/usecaseui-portal/src/app/core/services/managemencs.service.ts +++ b/usecaseui-portal/src/app/core/services/managemencs.service.ts @@ -20,11 +20,10 @@ export class ManagemencsService { //mock Currently unadjustable api interface deleteCustomer: this.baseUrl + "/uui-lcm/customers", /* delete */ createCustomer: this.baseUrl + "/uui-lcm/customers/", /* put */ - getCustomerresourceVersion: this.baseUrl + "/uui-lcm/customers/*_*", /* get */ - createServiceType: this.baseUrl + "/uui-lcm/customers/*_*/service-subscriptions/*+*", /* put */ - getServiceTypeResourceVersion: this.baseUrl + "/uui-lcm/customers/*_*/service-subscriptions/*+*", /* get */ - deleteServiceType: this.baseUrl + "/uui-lcm/customers/*_*/service-subscriptions/*+*", /* delete */ + getCustomerresourceVersion: this.baseUrl + "/uui-lcm/customers/*_*", /* get */ + getServiceTypeResourceVersion: this.baseUrl + "/uui-lcm/customers/*_*/service-subscriptions/*+*", + deleteServiceType: this.baseUrl + "/uui-lcm/customers/*_*/service-subscriptions/*+*", }; //The following APIs are optimizable ---------------------------------- |