blob: e598f269a8abf34401257fcc343c905d3754541e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
'use strict'
const checkErrors = require('./utils').checkErrors
const logger = require('../../helpers/logger')
const reqValidatorsPagination = {
pagination: pagination
}
function pagination (req, res, next) {
req.checkQuery('start', 'Should have a number start').optional().isInt()
req.checkQuery('count', 'Should have a number count').optional().isInt()
logger.debug('Checking pagination parameters', { parameters: req.query })
checkErrors(req, res, next)
}
// ---------------------------------------------------------------------------
module.exports = reqValidatorsPagination
|