forum: fix ForumTopicSubscribeView error 500 with anonymous user

This commit is contained in:
Antoine Bartuccio 2019-12-16 15:00:33 +01:00
parent 4ecad1c73b
commit ebee8c34e1
Signed by: klmp200
GPG Key ID: E7245548C53F904B
1 changed files with 4 additions and 1 deletions

View File

@ -42,6 +42,7 @@ from core.views import (
CanEditMixin,
CanEditPropMixin,
CanCreateMixin,
UserIsLoggedMixin,
can_view,
)
from core.views.forms import MarkdownInput
@ -273,7 +274,9 @@ class ForumTopicEditView(CanEditMixin, UpdateView):
template_name = "core/edit.jinja"
class ForumTopicSubscribeView(CanViewMixin, SingleObjectMixin, RedirectView):
class ForumTopicSubscribeView(
CanViewMixin, UserIsLoggedMixin, SingleObjectMixin, RedirectView
):
model = ForumTopic
pk_url_kwarg = "topic_id"
permanent = False