13 lines
377 B
Python
13 lines
377 B
Python
"""Url configuration for the auth module."""
|
|
|
|
from django.conf.urls import include, patterns, url
|
|
|
|
from .views import inactive_user_view, saml_metadata_view
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^auth/inactive', inactive_user_view),
|
|
url(r'^auth/saml/metadata.xml', saml_metadata_view),
|
|
url(r'^auth/', include('social.apps.django_app.urls', namespace='social')),
|
|
)
|