Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(pagination): Add ?page=all param to show all elements without pa… #12

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions utils/pagination.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ def get_paginated_response(self, data):
}
)

def paginate_queryset(self, queryset, request, view):
if (
request.query_params.get("page")
and request.query_params.get("page") == "all"
):
request.query_params._mutable = True
request.query_params.pop("page")
self.page_size = queryset.count()
return super().paginate_queryset(queryset, request, view)

def get_paginated_response_schema(self, schema):
return {
"type": "object",
Expand Down