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/pagination.js | |
parent | d5f345ed4cfac4e1fa84dcb4fce1cda4d32f9c73 (diff) | |
download | PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.gz PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.zst PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.zip |
First typescript iteration
Diffstat (limited to 'server/middlewares/pagination.js')
-rw-r--r-- | server/middlewares/pagination.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/server/middlewares/pagination.js b/server/middlewares/pagination.js deleted file mode 100644 index a90f60aab..000000000 --- a/server/middlewares/pagination.js +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | 'use strict' | ||
2 | |||
3 | const constants = require('../initializers/constants') | ||
4 | |||
5 | const paginationMiddleware = { | ||
6 | setPagination | ||
7 | } | ||
8 | |||
9 | function setPagination (req, res, next) { | ||
10 | if (!req.query.start) req.query.start = 0 | ||
11 | else req.query.start = parseInt(req.query.start, 10) | ||
12 | if (!req.query.count) req.query.count = constants.PAGINATION_COUNT_DEFAULT | ||
13 | else req.query.count = parseInt(req.query.count, 10) | ||
14 | |||
15 | return next() | ||
16 | } | ||
17 | |||
18 | // --------------------------------------------------------------------------- | ||
19 | |||
20 | module.exports = paginationMiddleware | ||