Return the instance of the authentication instance class that was used to authenticate the request, or `None`.
(self)
| 267 | |
| 268 | @property |
| 269 | def successful_authenticator(self): |
| 270 | """ |
| 271 | Return the instance of the authentication instance class that was used |
| 272 | to authenticate the request, or `None`. |
| 273 | """ |
| 274 | if not hasattr(self, '_authenticator'): |
| 275 | with wrap_attributeerrors(): |
| 276 | self._authenticate() |
| 277 | return self._authenticator |
| 278 | |
| 279 | def _load_data_and_files(self): |
| 280 | """ |
nothing calls this directly
no test coverage detected