From 4dc605497d969075c74cbaa7bb29c5d0f85da556 Mon Sep 17 00:00:00 2001 From: Chris Hines <chris.hines@monash.edu> Date: Fri, 7 Jun 2019 16:00:03 +0800 Subject: [PATCH] fix up the default api server to something valid --- src/environments/environment.prod.ts | 6 +++--- src/environments/environment.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index 4bf7bba..64c8851 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -1,9 +1,9 @@ export const environment = { production: true, apiserver: { - tes: "https://strudel2-test.cloud.cvl.org.au/tes", - tws: "https://strudel2-test.cloud.cvl.org.au", - name: "Test" + tes: "https://strudel2-api-test.cloud.cvl.org.au/tes", + tws: "https://strudel2-api-test.cloud.cvl.org.au", + name: "Testing" } diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 0c3d3a6..74a8d67 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -6,8 +6,8 @@ export const environment = { production: false, apiserver: { - tes: "https://strudel2-test.cloud.cvl.org.au/tes", - tws: "https://strudel2-test.cloud.cvl.org.au", - name: "Test" + tes: "https://strudel2-api-test.cloud.cvl.org.au/tes", + tws: "https://strudel2-api-test.cloud.cvl.org.au", + name: "Testing" } }; -- GitLab