From 500b1c47ba300ec567fb67cf159f3843f3a0e311 Mon Sep 17 00:00:00 2001 From: Seth Foster Date: Wed, 21 Aug 2024 12:31:45 -0400 Subject: [PATCH] SSO login should redirect to new UI index (#15456) Signed-off-by: Seth Foster --- awx/sso/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/sso/views.py b/awx/sso/views.py index b6fd724df7dd..6001c3a50261 100644 --- a/awx/sso/views.py +++ b/awx/sso/views.py @@ -22,7 +22,7 @@ class BaseRedirectView(RedirectView): def get_redirect_url(self, *args, **kwargs): last_path = self.request.COOKIES.get('lastPath', '') last_path = urllib.parse.quote(urllib.parse.unquote(last_path).strip('"')) - url = reverse('ui:index') + url = reverse('ui_next:index') if last_path: return '%s#%s' % (url, last_path) else: