Increased cap of tracking results

This commit is contained in:
2022-04-29 15:19:23 -04:00
parent 12aa283b0a
commit ad1dc19919
2 changed files with 3 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ def load_event_exhibit_obj(
hidden: str = 'not_hidden', # hidden, not_hidden, all
review: str = 'all', # ready, not_ready, all
limit: int = 100,
limit: int = 1500,
offset: int = 0,
by_alias: bool = True,

View File

@@ -246,7 +246,8 @@ async def get_event_exhibit_obj_tracking_list(
if event_exhibit_tracking_rec_list_result := get_event_exhibit_tracking_rec_list(
event_exhibit_id = event_exhibit_id,
enabled = commons.enabled,
limit = commons.limit,
# limit = commons.limit,
limit = 1500,
hidden = hidden,
):
event_exhibit_tracking_result_list = []