forked from kongfp/General-Platform-Backend
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
225 B
Python
9 lines
225 B
Python
9 months ago
|
from rest_framework.pagination import PageNumberPagination
|
||
|
|
||
|
|
||
|
class MyPageNumberPagination(PageNumberPagination):
|
||
|
page_size = 10
|
||
|
page_query_param = "page"
|
||
|
page_size_query_param = "pageSize"
|
||
|
max_page_size = 100
|