diff options
Diffstat (limited to 'server/middlewares/validators/pagination.ts')
-rw-r--r-- | server/middlewares/validators/pagination.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/middlewares/validators/pagination.ts b/server/middlewares/validators/pagination.ts index de719c05b..cca8295ff 100644 --- a/server/middlewares/validators/pagination.ts +++ b/server/middlewares/validators/pagination.ts | |||
@@ -1,7 +1,10 @@ | |||
1 | import 'express-validator' | ||
2 | import * as express from 'express' | ||
3 | |||
1 | import { checkErrors } from './utils' | 4 | import { checkErrors } from './utils' |
2 | import { logger } from '../../helpers' | 5 | import { logger } from '../../helpers' |
3 | 6 | ||
4 | function paginationValidator (req, res, next) { | 7 | function paginationValidator (req: express.Request, res: express.Response, next: express.NextFunction) { |
5 | req.checkQuery('start', 'Should have a number start').optional().isInt() | 8 | req.checkQuery('start', 'Should have a number start').optional().isInt() |
6 | req.checkQuery('count', 'Should have a number count').optional().isInt() | 9 | req.checkQuery('count', 'Should have a number count').optional().isInt() |
7 | 10 | ||