mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-21 13:59:36 +02:00
6 lines
201 B
Python
6 lines
201 B
Python
|
from rest_framework.pagination import PageNumberPagination
|
||
|
|
||
|
class StandardResultsSetPagination(PageNumberPagination):
|
||
|
page_size = 25
|
||
|
page_size_query_param = 'page_size'
|
||
|
max_page_size = 1000
|