blob: a5a542cdfe0f3fcf4ace19f879fbd6403750d406 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { query } from 'express-validator/check'
import * as express from 'express'
import { checkErrors } from './utils'
import { logger } from '../../helpers'
const paginationValidator = [
query('start').optional().isInt().withMessage('Should have a number start'),
query('count').optional().isInt().withMessage('Should have a number count'),
(req: express.Request, res: express.Response, next: express.NextFunction) => {
logger.debug('Checking pagination parameters', { parameters: req.query })
checkErrors(req, res, next)
}
]
// ---------------------------------------------------------------------------
export {
paginationValidator
}
|