mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 07:15:07 +01:00
8 lines
195 B
Python
8 lines
195 B
Python
|
|
from rest_framework.pagination import PageNumberPagination
|
||
|
|
|
||
|
|
|
||
|
|
class StandardPagination(PageNumberPagination):
|
||
|
|
page_size = 25
|
||
|
|
page_size_query_param = "page-size"
|
||
|
|
max_page_size = 100000
|