increased maximum page size for all IPs endpoint from 100 to 10000

This commit is contained in:
Lorenzo Venerandi
2026-02-23 12:00:01 +01:00
parent 560701fa50
commit 8222dc5eb5

View File

@@ -73,7 +73,7 @@ async def all_ips(
):
db = get_db()
page = max(1, page)
page_size = min(max(1, page_size), 100)
page_size = min(max(1, page_size), 10000)
try:
result = db.get_all_ips_paginated(