mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2025-03-07 11:31:22 +01:00
Forcing POST urls for votes
This commit is contained in:
parent
a2bf156d59
commit
5ae1c1fdcb
@ -61,6 +61,7 @@ def category_iframe(request, slug):
|
||||
|
||||
def vote(request, item, vote):
|
||||
item = get_object_or_404(KBItem, pk=item)
|
||||
if request.method == "POST":
|
||||
if vote == 'up':
|
||||
if not item.voted_by.filter(pk=request.user.pk):
|
||||
item.votes += 1
|
||||
|
Loading…
Reference in New Issue
Block a user