diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-05-15 22:22:03 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-05-20 09:57:40 +0200 |
commit | 65fcc3119c334b75dd13bcfdebf186afdc580a8f (patch) | |
tree | 4f2158c61a9b7c3f47cfa233d01413b946ee53c0 /server/middlewares/validators/pagination.ts | |
parent | d5f345ed4cfac4e1fa84dcb4fce1cda4d32f9c73 (diff) | |
download | PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.gz PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.zst PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.zip |
First typescript iteration
Diffstat (limited to 'server/middlewares/validators/pagination.ts')
-rw-r--r-- | server/middlewares/validators/pagination.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/server/middlewares/validators/pagination.ts b/server/middlewares/validators/pagination.ts new file mode 100644 index 000000000..de719c05b --- /dev/null +++ b/server/middlewares/validators/pagination.ts | |||
@@ -0,0 +1,17 @@ | |||
1 | import { checkErrors } from './utils' | ||
2 | import { logger } from '../../helpers' | ||
3 | |||
4 | function paginationValidator (req, res, next) { | ||
5 | req.checkQuery('start', 'Should have a number start').optional().isInt() | ||
6 | req.checkQuery('count', 'Should have a number count').optional().isInt() | ||
7 | |||
8 | logger.debug('Checking pagination parameters', { parameters: req.query }) | ||
9 | |||
10 | checkErrors(req, res, next) | ||
11 | } | ||
12 | |||
13 | // --------------------------------------------------------------------------- | ||
14 | |||
15 | export { | ||
16 | paginationValidator | ||
17 | } | ||