From b465141378ebc4d7a7ec6ff1f7aa757d5ed99596 Mon Sep 17 00:00:00 2001 From: Guilhem Forey Date: Fri, 12 Jan 2024 14:46:55 +0000 Subject: [PATCH] Guilhemf/fix/default api url staging (#220) * fix: updated default url staging to the correct one * fix: updated default url production to the correct one --- consent_api/config/defaults.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/consent_api/config/defaults.py b/consent_api/config/defaults.py index 07d9b236..7113cd2a 100644 --- a/consent_api/config/defaults.py +++ b/consent_api/config/defaults.py @@ -4,10 +4,10 @@ class DEV: class STAGING: - DEFAULT_CONSENT_API_ORIGIN = "https://consent-api-bgzqvpmbyq-nw.a.run.app" + DEFAULT_CONSENT_API_ORIGIN = "https://gds-single-consent-staging.app" DEFAULT_OTHER_SERVICE_ORIGIN = "" class PROD: - DEFAULT_CONSENT_API_ORIGIN = "" + DEFAULT_CONSENT_API_ORIGIN = "https://consent-api-bgzqvpmbyq-nw.a.run.app" DEFAULT_OTHER_SERVICE_ORIGIN = ""