(self, request, *args, **kwargs)
| 69 | """Verify that the current user is authenticated.""" |
| 70 | |
| 71 | def dispatch(self, request, *args, **kwargs): |
| 72 | if not request.user.is_authenticated: |
| 73 | return self.handle_no_permission() |
| 74 | return super().dispatch(request, *args, **kwargs) |
| 75 | |
| 76 | |
| 77 | class PermissionRequiredMixin(AccessMixin): |
no test coverage detected