Skip to content
Snippets Groups Projects
Commit 022a6598 authored by Jan Mach's avatar Jan Mach
Browse files

Increased page item limit to 100000.

In some cases like API endpoints it could be usefull to retrieve more items at once, so that the potential third party software can process more data at once.
parent f38e17f2
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ CFGKEY_ENABLED_BLUEPRINTS = 'ENABLED_BLUEPRINTS'
HAWAT_DEFAULT_PAGER_LIMIT = 100
"""Default page limit for pager/paginator."""
HAWAT_PAGER_LIMIT_CHOICES = [(5,5), (10,10), (20,20), (30,30), (50,50), (100,100), (200,200), (500,500), (1000,1000), (10000,10000)]
HAWAT_PAGER_LIMIT_CHOICES = [(5,5), (10,10), (20,20), (30,30), (50,50), (100,100), (200,200), (500,500), (1000,1000), (10000,10000), (100000,100000)]
"""List of available valid pager limit choices."""
HAWAT_DEFAULT_RESULT_TIMEDELTA = 7
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment