From 173caa250e6ab9078d9649416ef234bd30a67221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Mon, 30 Mar 2020 18:16:45 +0200 Subject: [PATCH] fixed urls for auths --- server/src/uds/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/uds/urls.py b/server/src/uds/urls.py index 6afd07bc..6a5e70dd 100644 --- a/server/src/uds/urls.py +++ b/server/src/uds/urls.py @@ -75,10 +75,10 @@ urlpatterns = [ # Federated authentication re_path(r'^uds/page/auth/(?P[^/]+)$', uds.web.views.authCallback, name='page.auth.callback'), - re_path(r'^uds/page/auth/info/(?P[a-zA-Z0-9-]+)$', uds.web.views.authInfo, name='page.auth.info'), + re_path(r'^uds/page/auth/info/(?P[a-zA-Z0-9.-]+)$', uds.web.views.authInfo, name='page.auth.info'), # Ticket authentication related - re_path(r'^uds/page/ticket/auth/(?P[a-zA-Z0-9-])$', uds.web.views.ticketAuth, name='page.ticket.auth'), + re_path(r'^uds/page/ticket/auth/(?P[a-zA-Z0-9.-])$', uds.web.views.ticketAuth, name='page.ticket.auth'), path(r'uds/page/ticket/launcher', uds.web.views.modern.index, name='page.ticket.launcher'), # This must be the last, so any patition will be managed by client in fact