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")),