From 99b226c6681dd0986e0bb14d9c740841945e19ff Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" <J.S.Caux@uva.nl> Date: Tue, 4 Jun 2019 19:20:25 +0200 Subject: [PATCH] Correct bug: missing vetted_by upon comment refusal --- comments/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comments/views.py b/comments/views.py index 531ca66c7..b12faca8c 100644 --- a/comments/views.py +++ b/comments/views.py @@ -132,7 +132,8 @@ def vet_submitted_comment(request, comment_id): elif form.cleaned_data['action_option'] == '2': # The comment request is simply rejected Comment.objects.filter(id=comment.id).update( - status=int(form.cleaned_data['refusal_reason'])) + status=int(form.cleaned_data['refusal_reason']), + vetted_by=request.user.contributor) comment.refresh_from_db() # Send emails -- GitLab