mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-16 14:06:39 +01:00
7 lines
177 B
Python
7 lines
177 B
Python
from rest_framework.pagination import PageNumberPagination
|
|
|
|
|
|
class CustomPageNumberPagination(PageNumberPagination):
|
|
page_size = 100
|
|
page_size_query_param = "page_size"
|