user list qoshildi

This commit is contained in:
behruz-dev
2025-11-26 16:35:18 +05:00
parent d9bdf91352
commit 6965fed7f5
10 changed files with 203 additions and 0 deletions

View File

@@ -4,4 +4,6 @@ REST_FRAMEWORK = {
'rest_framework.authentication.BasicAuthentication',
'rest_framework_simplejwt.authentication.JWTAuthentication',
],
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination',
'PAGE_SIZE': 10
}

View File

@@ -28,6 +28,7 @@ INSTALLED_APPS = [
'core.apps.authentication',
'core.apps.accounts',
'core.apps.orders',
'core.apps.dashboard',
]
MIDDLEWARE = [

View File

@@ -40,6 +40,7 @@ urlpatterns += [
path('authentication/', include('core.apps.authentication.urls')),
path('shared/', include('core.apps.shared.urls')),
path('orders/', include('core.apps.orders.urls')),
path('admin/', include('core.apps.dashboard.urls')),
],
)),
]