diff options
author | 2025-02-09 13:18:28 +0100 | |
---|---|---|
committer | 2025-02-10 09:04:41 +0100 | |
commit | c1667e6060e078b31d7b64ce509d58e853df3a3b (patch) | |
tree | 1ff01c3a0c27cbb7e4b1171e5c824c0433e7c2e9 /usecaseui-portal/src/app/core/services/onboard.service.ts | |
parent | 9410a0b6eb80fda6dd652424e8c80ffa46d43077 (diff) |
Backend url is environment specific in some locations
- use `window.location.origin` to make the backend url working for both
local (localhost) and remote (uui.example.com) deployments
Issue-ID: USECASEUI-865
Change-Id: Idf5b6fe8a04ce744fc4cb9986c10977e60548820
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'usecaseui-portal/src/app/core/services/onboard.service.ts')
-rw-r--r-- | usecaseui-portal/src/app/core/services/onboard.service.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usecaseui-portal/src/app/core/services/onboard.service.ts b/usecaseui-portal/src/app/core/services/onboard.service.ts index 20d9c244..472fcf63 100644 --- a/usecaseui-portal/src/app/core/services/onboard.service.ts +++ b/usecaseui-portal/src/app/core/services/onboard.service.ts @@ -14,15 +14,14 @@ limitations under the License. */ import { Injectable } from '@angular/core'; -import { HttpClient, HttpHeaders, HttpParams, HttpResponse } from '@angular/common/http'; -import { Observable } from 'rxjs/Observable'; -import { baseUrl } from '../models/dataInterface'; +import { HttpClient, HttpParams } from '@angular/common/http'; +import { environment } from '@src/environments/environment'; @Injectable() export class onboardService { constructor(private http: HttpClient) { } - baseUrl = baseUrl.baseUrl; + baseUrl =environment.backendUrl; url = { onboardTableData: this.baseUrl + "/uui-lcm/ns-packages", onboardDataVNF: this.baseUrl + "/uui-lcm/vnf-packages", |