summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/core/models/dataInterface.ts
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2025-02-09 13:18:28 +0100
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2025-02-10 09:04:41 +0100
commitc1667e6060e078b31d7b64ce509d58e853df3a3b (patch)
tree1ff01c3a0c27cbb7e4b1171e5c824c0433e7c2e9 /usecaseui-portal/src/app/core/models/dataInterface.ts
parent9410a0b6eb80fda6dd652424e8c80ffa46d43077 (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/models/dataInterface.ts')
-rw-r--r--usecaseui-portal/src/app/core/models/dataInterface.ts7
1 files changed, 1 insertions, 6 deletions
diff --git a/usecaseui-portal/src/app/core/models/dataInterface.ts b/usecaseui-portal/src/app/core/models/dataInterface.ts
index d367fe14..578096ea 100644
--- a/usecaseui-portal/src/app/core/models/dataInterface.ts
+++ b/usecaseui-portal/src/app/core/models/dataInterface.ts
@@ -1,11 +1,6 @@
-enum baseUrl{
- baseUrl = '/api/usecaseui-server/v1' //online
- // baseUrl = 'https://192.168.235.25:30283/api/usecaseui-server/v1' //local two
-}
-
interface servicesTableData {
total:number,
tableList:string[]
}
-export {servicesTableData , baseUrl}
+export {servicesTableData}