increased maximum page size for all IPs endpoint from 100 to 10000
This commit is contained in:
@@ -73,7 +73,7 @@ async def all_ips(
|
|||||||
):
|
):
|
||||||
db = get_db()
|
db = get_db()
|
||||||
page = max(1, page)
|
page = max(1, page)
|
||||||
page_size = min(max(1, page_size), 100)
|
page_size = min(max(1, page_size), 10000)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
result = db.get_all_ips_paginated(
|
result = db.get_all_ips_paginated(
|
||||||
|
|||||||
Reference in New Issue
Block a user