An AuthManager not extracting nor parsing the authorization token.
| 58 | |
| 59 | |
| 60 | class AllowAll(AuthManager): |
| 61 | """ |
| 62 | An AuthManager not extracting nor parsing the authorization token. |
| 63 | """ |
| 64 | |
| 65 | def __init__(self): |
| 66 | super().__init__( |
| 67 | token_extractor=NoAuthTokenExtractor(), token_parser=NoAuthTokenParser() |
| 68 | ) |
no outgoing calls