MCPcopy
hub / github.com/django/django / authenticate

Method authenticate

django/contrib/auth/backends.py:16–17  ·  view source on GitHub ↗
(self, request, **kwargs)

Source from the content-addressed store, hash-verified

14
15class BaseBackend:
16 def authenticate(self, request, **kwargs):
17 return None
18
19 async def aauthenticate(self, request, **kwargs):
20 return await sync_to_async(self.authenticate)(request, **kwargs)

Callers 2

process_requestMethod · 0.45
authenticateFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected