From 41790caf59adfbbc488e8a62f218ddad0f15a9e4 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Tue, 7 Feb 2017 21:46:35 +0000 Subject: [PATCH] REST: Limit max page size If this isn't set it's possible to set any page size. Let's restrict this to the value set in settings. Signed-off-by: Stephen Finucane Cc: Andy Doan Reviewed-by: Andy Doan --- patchwork/api/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patchwork/api/base.py b/patchwork/api/base.py index dbd8148d..07979905 100644 --- a/patchwork/api/base.py +++ b/patchwork/api/base.py @@ -32,7 +32,7 @@ class LinkHeaderPagination(PageNumberPagination): https://tools.ietf.org/html/rfc5988#section-5 https://developer.github.com/guides/traversing-with-pagination """ - page_size = settings.REST_RESULTS_PER_PAGE + page_size = max_page_size = settings.REST_RESULTS_PER_PAGE page_size_query_param = 'per_page' def get_paginated_response(self, data): -- 2.47.3