Add: user profile api url path

This commit is contained in:
Aroy-Art 2025-01-28 22:16:56 +01:00
parent 32eee11a4b
commit a751e4a3e5
Signed by: Aroy
GPG key ID: 583642324A1D2070

7
backend/api/user/urls.py Normal file
View file

@ -0,0 +1,7 @@
from django.urls import path
from .views import ProfileView
urlpatterns = [
path("profile/", ProfileView.as_view(), name="profile"),
]