]> git.parisson.com Git - django-social-auth.git/commitdiff
Add a BACKENDS dictionary for the basic OpenID backend, allowing it to be discovered...
authorJohannes Holmberg <johannes@update.uu.se>
Wed, 8 Feb 2012 01:19:01 +0000 (02:19 +0100)
committerJohannes Holmberg <johannes@update.uu.se>
Wed, 8 Feb 2012 01:19:01 +0000 (02:19 +0100)
social_auth/backends/__init__.py

index 394f74b9348a739488f212dcb85d98d65e28f8e4..f01ceba6c1e882856f8924417995d5f7cf9f3d25 100644 (file)
@@ -687,3 +687,7 @@ def get_backend(name, *args, **kwargs):
             return BACKENDSCACHE[name](*args, **kwargs)
         except KeyError:
             return None
+
+BACKENDS = {
+    'openid': OpenIdAuth
+}
\ No newline at end of file