Skip to content
Snippets Groups Projects
Forked from funkwhale / funkwhale
7938 commits behind the upstream repository.
pagination.py 173 B
from rest_framework.pagination import PageNumberPagination


class FunkwhalePagination(PageNumberPagination):
    page_size_query_param = 'page_size'
    max_page_size = 25