third_party_auth contains a working settings mechanism, the start of the provider interface + 3 implementations (Google, Mozilla Persona, LinkedIn), and a stub for the auth pipeline. Modified existing lms settings files to use but deactivate the module.
8 lines
209 B
Python
8 lines
209 B
Python
"""Url configuration for the auth module."""
|
|
|
|
from django.conf.urls import include, patterns, url
|
|
|
|
urlpatterns = patterns(
|
|
'', url(r'^auth/', include('social.apps.django_app.urls', namespace='social')),
|
|
)
|