From c1667e6060e078b31d7b64ce509d58e853df3a3b Mon Sep 17 00:00:00 2001 From: Fiete Ostkamp Date: Sun, 9 Feb 2025 13:18:28 +0100 Subject: 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 --- usecaseui-portal/src/app/core/models/dataInterface.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'usecaseui-portal/src/app/core/models/dataInterface.ts') 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} -- cgit