mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 01:09:16 +02:00
6 lines
173 B
Python
6 lines
173 B
Python
from rest_framework.pagination import PageNumberPagination
|
|
|
|
|
|
class FunkwhalePagination(PageNumberPagination):
|
|
page_size_query_param = 'page_size'
|
|
max_page_size = 25
|