diff --git a/CHANGELOG.md b/CHANGELOG.md index 09b90a43b9..3597431445 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - GP2-3309 - [HOTFIX] adding bing search console meta tag - GP2-3137 - [HOTFIX] Remove /transition-period/contact/ and its success page from great-cms - GP2-3372 - [HOTFIX] add crsf token to company disconnect to fix 403 error +- [HOTFIX] - SOO contact issue ### Enhancements - GP2-3128 - Analytics - section completion diff --git a/contact/urls.py b/contact/urls.py index ed6bccd7c1..3a173ae0b1 100644 --- a/contact/urls.py +++ b/contact/urls.py @@ -1,3 +1,4 @@ +from django.conf import settings from django.contrib.auth.decorators import login_required from django.urls import path, reverse_lazy from great_components.decorators import skip_ga360 @@ -236,7 +237,8 @@ url_name='contact:contact-us-soo', done_step_name='finished', ) - ) + ), + login_url=settings.SSO_PROXY_LOGIN_URL, ), name='contact-us-soo', ),