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.
10 lines
231 B
Python
10 lines
231 B
Python
"""Auth pipeline definitions."""
|
|
|
|
from social.pipeline import partial
|
|
|
|
|
|
@partial.partial
|
|
def step(*args, **kwargs):
|
|
"""Fake pipeline step; just throws loudly for now."""
|
|
raise NotImplementedError('%s, %s' % (args, kwargs))
|