added whitespace

This commit is contained in:
Oliver Zander 2025-08-21 10:08:38 +02:00 committed by Tobias Herre
parent 17f763ba66
commit 52315d4378
1 changed files with 3 additions and 0 deletions

View File

@ -38,11 +38,13 @@ def auth_deny(choice, pk, auth):
return False return False
@login_required @login_required
def export(request): def export(request):
'''export the project database to a csv''' '''export the project database to a csv'''
return HttpResponse('WE WANT CSV!') return HttpResponse('WE WANT CSV!')
@login_required @login_required
def authorize(request, choice, pk): def authorize(request, choice, pk):
'''If IF grant a support they click a link in a mail which leads here. '''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: else:
return HttpResponse(f"AUTHORIZED! choice: {choice}, pk: {pk}") return HttpResponse(f"AUTHORIZED! choice: {choice}, pk: {pk}")
@login_required @login_required
def deny(request, choice, pk): def deny(request, choice, pk):
'''If IF denies a support they click a link in a mail which leads here '''If IF denies a support they click a link in a mail which leads here