diff --git a/backend/backend/settings.py b/backend/backend/settings.py index 56e9dba..32b39d6 100644 --- a/backend/backend/settings.py +++ b/backend/backend/settings.py @@ -128,6 +128,8 @@ REST_FRAMEWORK = { "rest_framework_simplejwt.authentication.JWTAuthentication", ), "DEFAULT_FILTER_BACKENDS": ["django_filters.rest_framework.DjangoFilterBackend"], + "DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.LimitOffsetPagination", + "PAGE_SIZE": 100, }