PSA was monolothic, now split, with new features, like a DB-backed partial pipeline. FB OAuth2 version also upped. Partial pipelines don't get cleared except when necessary. They persist for special cases like change of browser while still mid-pipeline (i.e. email validation step). Refactor, cleanup, and update of a lot of small things as well. PLEASE NOTE the new `social_auth_partial` table.
15 lines
634 B
Python
15 lines
634 B
Python
"""Url configuration for the auth module."""
|
|
|
|
from django.conf.urls import include, patterns, url
|
|
|
|
from .views import inactive_user_view, lti_login_and_complete_view, post_to_custom_auth_form, saml_metadata_view
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^auth/inactive', inactive_user_view, name="third_party_inactive_redirect"),
|
|
url(r'^auth/custom_auth_entry', post_to_custom_auth_form, name='tpa_post_to_custom_auth_form'),
|
|
url(r'^auth/saml/metadata.xml', saml_metadata_view),
|
|
url(r'^auth/login/(?P<backend>lti)/$', lti_login_and_complete_view),
|
|
url(r'^auth/', include('social_django.urls', namespace='social')),
|
|
)
|