Pagination¶
LimitOffsetPagination
¶
Bases: LimitOffsetPagination
Customized paginator class to limit max objects in list APIs.
Source code in saritasa_drf_tools/pagination.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | |
default_limit
property
¶
Get default limit for page.
max_limit
property
¶
Get limit for page.
Will become deprecated once this is merged https://github.com/encode/django-rest-framework/pull/9107
paginate_queryset(queryset, request, view=None)
¶
Set view for pagination.
Source code in saritasa_drf_tools/pagination.py
12 13 14 15 16 17 18 19 20 | |