Add: user profile api url path
This commit is contained in:
parent
32eee11a4b
commit
a751e4a3e5
1 changed files with 7 additions and 0 deletions
7
backend/api/user/urls.py
Normal file
7
backend/api/user/urls.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.urls import path
|
||||
|
||||
from .views import ProfileView
|
||||
|
||||
urlpatterns = [
|
||||
path("profile/", ProfileView.as_view(), name="profile"),
|
||||
]
|
Loading…
Add table
Reference in a new issue