mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-21 05:49:37 +02:00
6 lines
No EOL
201 B
Python
6 lines
No EOL
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 |