From 3d7e25e20c6c7af0fd1fbd721344c7562c06eed5 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Mon, 10 Feb 2025 10:18:22 +0100 Subject: [PATCH] Fix: add schema api url path --- backend/api/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/api/urls.py b/backend/api/urls.py index e6b1078..af149bf 100644 --- a/backend/api/urls.py +++ b/backend/api/urls.py @@ -2,6 +2,7 @@ from django.urls import path, include urlpatterns = [ + path("schema/", include("api.schema.urls")), path("auth/", include("api.authentication.urls")), path("user/", include("api.user.urls")), path("posts/", include("api.posts.urls")),