diff options
Diffstat (limited to 'server/middlewares/validators/pagination.ts')
-rw-r--r-- | server/middlewares/validators/pagination.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/middlewares/validators/pagination.ts b/server/middlewares/validators/pagination.ts index 8e4922b9d..ce371d6c1 100644 --- a/server/middlewares/validators/pagination.ts +++ b/server/middlewares/validators/pagination.ts | |||
@@ -10,7 +10,7 @@ function paginationValidatorBuilder (tags: string[] = []) { | |||
10 | return [ | 10 | return [ |
11 | query('start') | 11 | query('start') |
12 | .optional() | 12 | .optional() |
13 | .isInt({ min: 0 }).withMessage('Should have a number start'), | 13 | .isInt({ min: 0 }), |
14 | query('count') | 14 | query('count') |
15 | .optional() | 15 | .optional() |
16 | .isInt({ min: 0, max: PAGINATION.GLOBAL.COUNT.MAX }).withMessage(`Should have a number count (max: ${PAGINATION.GLOBAL.COUNT.MAX})`), | 16 | .isInt({ min: 0, max: PAGINATION.GLOBAL.COUNT.MAX }).withMessage(`Should have a number count (max: ${PAGINATION.GLOBAL.COUNT.MAX})`), |