Reduce page size from 1000 to 100

1000 items per page is kind of big.
100 is still big but it's a better default number to start with.

Change-Id: I2759fe14e638e784afd017018b0ecaa474e2d39a
This commit is contained in:
David Moreau Simard 2018-11-14 14:21:44 -05:00
parent 8f4e1ac20d
commit 9edb01ad32
No known key found for this signature in database
GPG Key ID: CBEB466764A9E621
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ LOGGING = {
REST_FRAMEWORK = {
"DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.LimitOffsetPagination",
"PAGE_SIZE": 1000,
"PAGE_SIZE": 100,
"DEFAULT_FILTER_BACKENDS": ("django_filters.rest_framework.DjangoFilterBackend",),
"DEFAULT_RENDERER_CLASSES": (
"rest_framework.renderers.JSONRenderer",