2017-11-14 09:51:57 +01:00
|
|
|
from django.conf.urls import include, url
|
|
|
|
import django_saml2_pro_auth.urls as saml_urls
|
2018-05-04 15:09:27 +02:00
|
|
|
from rugwebsite.views import home, gdpr, request_gdpr_delete
|
2017-11-14 09:51:57 +01:00
|
|
|
|
|
|
|
urlpatterns = [
|
2018-05-04 15:09:27 +02:00
|
|
|
url(r'gdpr/$', gdpr, name='gdpr'),
|
|
|
|
url(r'gdpr-forget-me/$', request_gdpr_delete, name='gdpr-forget-me'),
|
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
|
|
|
]
|