From 52315d437865fc9093711fba4d2eef824ba77949 Mon Sep 17 00:00:00 2001 From: Oliver Zander Date: Thu, 21 Aug 2025 10:08:38 +0200 Subject: [PATCH] added whitespace --- input/views.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/input/views.py b/input/views.py index d0d6887..bc02e07 100755 --- a/input/views.py +++ b/input/views.py @@ -38,11 +38,13 @@ def auth_deny(choice, pk, auth): return False + @login_required def export(request): '''export the project database to a csv''' return HttpResponse('WE WANT CSV!') + @login_required def authorize(request, choice, pk): '''If IF grant a support they click a link in a mail which leads here. @@ -54,6 +56,7 @@ def authorize(request, choice, pk): else: return HttpResponse(f"AUTHORIZED! choice: {choice}, pk: {pk}") + @login_required def deny(request, choice, pk): '''If IF denies a support they click a link in a mail which leads here