First commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
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"),
|
||||
]
|
||||
Reference in New Issue
Block a user