From 2efe7f9b249666d1ee75a5c99e51f572d2d68a94 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Tue, 28 Jan 2025 22:18:20 +0100 Subject: [PATCH] Add: include user app urls --- backend/api/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/api/urls.py b/backend/api/urls.py index b385ee3..e8d5d5a 100644 --- a/backend/api/urls.py +++ b/backend/api/urls.py @@ -6,6 +6,7 @@ from rest_framework_simplejwt.views import ( ) urlpatterns = [ + path("api/user/", include("api.user.urls")), path("api/token/", TokenObtainPairView.as_view(), name="token_obtain_pair"), path("api/token/refresh/", TokenRefreshView.as_view(), name="token_refresh"), ]