7 lines
177 B
Python
7 lines
177 B
Python
from rest_framework.pagination import PageNumberPagination
|
|
|
|
|
|
class UserDefinedSizePagination(PageNumberPagination):
|
|
page_query_param = 'page_size'
|
|
max_page_size = '500'
|