user list qoshildi
This commit is contained in:
14
core/apps/dashboard/urls.py
Normal file
14
core/apps/dashboard/urls.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.urls import path, include
|
||||
|
||||
### dashboard ###
|
||||
# users
|
||||
from core.apps.dashboard.views import user as user_views
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path('user/', include(
|
||||
[
|
||||
path('list/', user_views.UserListApiView.as_view(), name='user-list-api'),
|
||||
],
|
||||
)),
|
||||
]
|
||||
Reference in New Issue
Block a user