rug-website/rugwebsite/urls.py

10 lines
216 B
Python
Raw Normal View History

2017-11-14 09:51:57 +01:00
from django.conf.urls import include, url
import django_saml2_pro_auth.urls as saml_urls
2017-11-24 17:19:15 +01:00
from rugwebsite.views import home
2017-11-14 09:51:57 +01:00
urlpatterns = [
2017-11-24 17:19:15 +01:00
url(r'', include(saml_urls, namespace='saml')),
url(r'$', home),
2017-11-14 09:51:57 +01:00
]