From 751ce78244a05520f937098cdf8561d8fd42192d Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Fri, 14 Feb 2025 11:08:36 +0100 Subject: [PATCH] Fix: added missing trailing slash --- backend/api/creators/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/api/creators/urls.py b/backend/api/creators/urls.py index 0036c11..e8f2468 100644 --- a/backend/api/creators/urls.py +++ b/backend/api/creators/urls.py @@ -5,7 +5,7 @@ from .views import CreatorListView, CreatorDetailsView urlpatterns = [ path("", CreatorListView.as_view(), name="creator_list"), path( - "", + "/", CreatorDetailsView.as_view(), name="creator_details", ),