diff options
Diffstat (limited to 'server/middlewares/pagination.ts')
-rw-r--r-- | server/middlewares/pagination.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/middlewares/pagination.ts b/server/middlewares/pagination.ts index 8fe9f9082..cadd76980 100644 --- a/server/middlewares/pagination.ts +++ b/server/middlewares/pagination.ts | |||
@@ -1,10 +1,10 @@ | |||
1 | const constants = require('../initializers/constants') | 1 | import { PAGINATION_COUNT_DEFAULT } from '../initializers' |
2 | 2 | ||
3 | function setPagination (req, res, next) { | 3 | function setPagination (req, res, next) { |
4 | if (!req.query.start) req.query.start = 0 | 4 | if (!req.query.start) req.query.start = 0 |
5 | else req.query.start = parseInt(req.query.start, 10) | 5 | else req.query.start = parseInt(req.query.start, 10) |
6 | 6 | ||
7 | if (!req.query.count) req.query.count = constants.PAGINATION_COUNT_DEFAULT | 7 | if (!req.query.count) req.query.count = PAGINATION_COUNT_DEFAULT |
8 | else req.query.count = parseInt(req.query.count, 10) | 8 | else req.query.count = parseInt(req.query.count, 10) |
9 | 9 | ||
10 | return next() | 10 | return next() |