Decorator to exempt an endpoint from any auth check altogether. The endpoint will be publicly accessible by anyone, regardless of the system’s current authentication requirements.
()
| 69 | |
| 70 | |
| 71 | def no_auth_required(): |
| 72 | """Decorator to exempt an endpoint from any auth check altogether. |
| 73 | |
| 74 | The endpoint will be publicly accessible by anyone, regardless of the |
| 75 | system’s current authentication requirements. |
| 76 | """ |
| 77 | return _required_auth_level_decorator(None) |
| 78 | |
| 79 | |
| 80 | @api_blueprint.before_request |
nothing calls this directly
no test coverage detected