From 4689bcff6f64b147282d826474af7ae503d9f0ba Mon Sep 17 00:00:00 2001 From: Guilhem Forey Date: Thu, 11 Jan 2024 09:33:27 +0000 Subject: [PATCH] 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 e1455c36..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://gds-single-consent-staging.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 = ""