mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 22:59:15 +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 = 50
|