summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.service.ts
diff options
context:
space:
mode:
authorSunder Tattavarada <statta@research.att.com>2020-07-28 16:56:24 +0000
committerGerrit Code Review <gerrit@onap.org>2020-07-28 16:56:24 +0000
commit4d79935df7115dc063a9191a0186d6f834838c69 (patch)
tree8782d041c6624bc49f50a32acd7ad9072e29a20a /ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.service.ts
parent382c506e61f11d9ebf41d2c90fc7794a3bb71900 (diff)
parent05af2c42b57d71d375ba2e50fd10a3fd682ea226 (diff)
Merge "Integrated UI lazy loading and Raptor update"
Diffstat (limited to 'ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.service.ts')
-rw-r--r--ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.service.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.service.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.service.ts
index 44d9e5ef..4c4a01c3 100644
--- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.service.ts
+++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/shared/services/user/user.service.ts
@@ -20,7 +20,7 @@ data;
observable;
getFunctionalMenuStaticDetailSession2(){
- return this.http.get(environment.getTopMenu,{ withCredentials: true })
+ return this.http.get(environment.getFunctionalMenuStaticDetail,{ withCredentials: true })
.subscribe((results: Object) => {
this.user = new User(results);
});
@@ -30,7 +30,7 @@ getFunctionalMenuStaticDetailSession2(){
public getFunctionalMenuStaticDetailSession(): Observable<User> {
return this.http
- .get(environment.getTopMenu,{ withCredentials: true })
+ .get(environment.getFunctionalMenuStaticDetail,{ withCredentials: true })
.map(response => {
return new User(response);
})
@@ -43,7 +43,7 @@ getFunctionalMenuStaticDetailSession1() {
} else if (this.observable) {
return this.observable;
} else {
- this.observable = this.http.get(environment.getTopMenu, {
+ this.observable = this.http.get(environment.getFunctionalMenuStaticDetail, {
withCredentials: true,
observe: 'response'
})