X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=authosm%2Fbackend.py;h=b8342eb2af3f3efc17738e696a6db15e72a5db52;hb=114c5a12dd39efa0a1aedb9296021e2975340106;hp=9c316a93152b5c6ead7a99525056e17cb30c2bbb;hpb=835a0b7c317c0ad76a15f90acd01571cb1f62eb3;p=osm%2FLW-UI.git diff --git a/authosm/backend.py b/authosm/backend.py index 9c316a9..b8342eb 100644 --- a/authosm/backend.py +++ b/authosm/backend.py @@ -21,6 +21,7 @@ from .exceptions import OSMAuthException class OsmBackend(object): + def authenticate(self, **kwargs): ''' kwargs will receive the python dict that may contain @@ -60,3 +61,4 @@ class OsmBackend(object): return OsmUser.objects.get(pk=user_id) except OsmUser.DoesNotExist: return None +