Will be called when returning a 403. May write a login form as the response.
(self, invalid_password: bool)
| 233 | setattr(cls, method, AuthRequestHandler._require_auth(fn)) |
| 234 | |
| 235 | def auth_fail(self, invalid_password: bool) -> None: |
| 236 | """ |
| 237 | Will be called when returning a 403. |
| 238 | May write a login form as the response. |
| 239 | """ |
| 240 | |
| 241 | @staticmethod |
| 242 | def _require_auth[**P, R]( |