12 lines
286 B
Python
12 lines
286 B
Python
from rest_framework.pagination import PageNumberPagination
|
|
|
|
|
|
class ResultSetPagination(PageNumberPagination):
|
|
page_size_query_param = "count"
|
|
max_page_size = 50
|
|
page_size = 30
|
|
|
|
|
|
class LargeResultSetPagination(ResultSetPagination):
|
|
max_page_size = 100
|
|
page_size = 50
|