MCPcopy Create free account
hub / github.com/encode/django-rest-framework / get_authenticators

Method get_authenticators

rest_framework/views.py:274–278  ·  view source on GitHub ↗

Instantiates and returns the list of authenticators that this view can use.

(self)

Source from the content-addressed store, hash-verified

272 return [parser() for parser in self.parser_classes]
273
274 def get_authenticators(self):
275 """
276 Instantiates and returns the list of authenticators that this view can use.
277 """
278 return [auth() for auth in self.authentication_classes]
279
280 def get_permissions(self):
281 """

Callers 2

initialize_requestMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected