initial push for pagination with streams tables - still need to fix the channels form tables

This commit is contained in:
dekzter 2025-03-08 09:17:20 -05:00
parent f57e15bd00
commit 9ac73cf990
10 changed files with 228 additions and 124 deletions

View file

@ -32,6 +32,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'rest_framework',
'corsheaders',
'django_filters',
]
@ -115,6 +116,7 @@ REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': [
'rest_framework_simplejwt.authentication.JWTAuthentication',
],
'DEFAULT_FILTER_BACKENDS': ['django_filters.rest_framework.DjangoFilterBackend'],
}
SWAGGER_SETTINGS = {