From a751e4a3e56afa32e345fab59134096ab47224c7 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Tue, 28 Jan 2025 22:16:56 +0100 Subject: [PATCH] Add: user profile api url path --- backend/api/user/urls.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 backend/api/user/urls.py diff --git a/backend/api/user/urls.py b/backend/api/user/urls.py new file mode 100644 index 0000000..1c5510c --- /dev/null +++ b/backend/api/user/urls.py @@ -0,0 +1,7 @@ +from django.urls import path + +from .views import ProfileView + +urlpatterns = [ + path("profile/", ProfileView.as_view(), name="profile"), +]