diff --git a/backend/api/urls.py b/backend/api/urls.py index 3f51d76..154bc4a 100644 --- a/backend/api/urls.py +++ b/backend/api/urls.py @@ -3,4 +3,5 @@ from django.urls import path, include urlpatterns = [ path("auth/", include("api.authentication.urls")), + path("user/", include("api.user.urls")), ]