From a780c26ba0b6f831a93f2f05ae1c8479e61a6e26 Mon Sep 17 00:00:00 2001 From: decheng zhang Date: Tue, 10 May 2022 10:55:51 -0400 Subject: fix: ccvpn topology display issue - topology display - tunnel display - uni and inni coloring Issue-ID: REQ-1103 Signed-off-by: decheng zhang Change-Id: Ib76836edf2c7c063ad4b76cde96fe8efb7540fdb Signed-off-by: decheng zhang --- .../src/app/core/services/networkHttpservice.service.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'usecaseui-portal/src/app/core/services') diff --git a/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts b/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts index 77dbaffa..d558d489 100644 --- a/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts +++ b/usecaseui-portal/src/app/core/services/networkHttpservice.service.ts @@ -43,7 +43,8 @@ export class networkHttpservice { "deleteLink": this.baseUrl+"/uui-sotn/deleteLink/", "getConnectivities": this.baseUrl+"/uui-sotn/getConnectivityInfo", "getNetworkRoutes": this.baseUrl + "/uui-sotn/getNetworkRouteInfo", - "getVpnBindings": this.baseUrl + "/uui-sotn/getVpnBindingInfo" + "getVpnBindings": this.baseUrl + "/uui-sotn/getVpnBindingInfo", + "getUnis": this.baseUrl + "/uui-sotn/getUniInfo" }; //The following APIs function are optimizable------------------------ @@ -96,6 +97,10 @@ export class networkHttpservice { return this.http.get(this.url["getVpnBindings"]); } + getUnisData(){ + return this.http.get(this.url["getUnis"]); + } + //Create an external cloud newwork interface createNetwrok(paramsObj) { return this.http.put(this.url["createNetwrok"] + paramsObj["network-id"], paramsObj); -- cgit 1.2.3-korg