Skip to content

Commit

Permalink
fix: allow max limit of 60
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed Mar 2, 2023
1 parent adb5cf6 commit 2391a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export const OffsetParam = Type.Integer({

export const LimitParam = Type.Integer({
minimum: 1,
maximum: 20,
maximum: 60,
title: 'Limit',
description: 'Results per page',
});
Expand Down

0 comments on commit 2391a75

Please sign in to comment.