Files
Backend/account/urls.py
T

10 lines
295 B
Python
Raw Normal View History

2026-02-19 01:19:22 +03:30
from django.urls import path
from .views import AccountView, ProfileView
urlpatterns = [
path("profile/", ProfileView.as_view(), name="profile-update"),
2026-03-25 15:43:00 +03:30
# path("<uuid:uuid>/", AccountView.as_view(), name="account-detail"),
# path("", AccountView.as_view(), name="account-list"),
2026-02-19 01:19:22 +03:30
]