Files
Backend/account/urls.py
T

10 lines
291 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"),
path("<uuid:uuid>/", AccountView.as_view(), name="account-detail"),
path("", AccountView.as_view(), name="account-list"),
]