Instantiates and returns the list of authenticators that this view can use.
(self)
| 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 | """ |
no outgoing calls
no test coverage detected