From 1c0afa82dca8d3b0bb38c22d6a4ddbe5df4bec06 Mon Sep 17 00:00:00 2001 From: ftsell Date: Thu, 10 Oct 2024 10:40:51 +0200 Subject: [PATCH] use str instead of slug for /nextcloud/set_quota username variable --- mafiasi/nextcloud/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mafiasi/nextcloud/urls.py b/mafiasi/nextcloud/urls.py index bfd82204..62facfa7 100644 --- a/mafiasi/nextcloud/urls.py +++ b/mafiasi/nextcloud/urls.py @@ -3,5 +3,5 @@ from .views import set_quota urlpatterns = [ - path("set_quota/", set_quota, name="nextcloud_set_quota"), + path("set_quota/", set_quota, name="nextcloud_set_quota"), ]