diff --git a/core/auth/mixins.py b/core/auth/mixins.py index 794021d5..422d7bce 100644 --- a/core/auth/mixins.py +++ b/core/auth/mixins.py @@ -208,13 +208,6 @@ class FormerSubscriberMixin(AccessMixin): return super().dispatch(request, *args, **kwargs) -class SubscriberMixin(AccessMixin): - def dispatch(self, request, *args, **kwargs): - if not request.user.is_subscribed: - return self.handle_no_permission() - return super().dispatch(request, *args, **kwargs) - - class PermissionOrAuthorRequiredMixin(PermissionRequiredMixin): """Require that the user has the required perm or is the object author.