From 1c39b4fcd7c5732b7be1a189155139d522a25947 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 23 May 2016 14:10:28 +0200 Subject: [PATCH] Increased PAGINATION_LIMIT to 250. This is a quick workaround to show group nodes with 25+ child nodes. --- pillar/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pillar/settings.py b/pillar/settings.py index b0073d44..e759f9f6 100644 --- a/pillar/settings.py +++ b/pillar/settings.py @@ -9,7 +9,7 @@ RESOURCE_METHODS = ['GET', 'POST', 'DELETE'] # individual items (defaults to read-only item access). ITEM_METHODS = ['GET', 'PUT', 'DELETE', 'PATCH'] -PAGINATION_LIMIT = 25 +PAGINATION_LIMIT = 250 _file_embedded_schema = { 'type': 'objectid',