1
0
Fork 0
peertube/server/middlewares/pagination.ts

18 lines
451 B
TypeScript
Raw Normal View History

2017-05-22 18:58:25 +00:00
import { PAGINATION_COUNT_DEFAULT } from '../initializers'
function setPagination (req, res, next) {
if (!req.query.start) req.query.start = 0
2016-05-19 18:27:36 +00:00
else req.query.start = parseInt(req.query.start, 10)
2017-05-15 20:22:03 +00:00
2017-05-22 18:58:25 +00:00
if (!req.query.count) req.query.count = PAGINATION_COUNT_DEFAULT
2016-05-19 18:27:36 +00:00
else req.query.count = parseInt(req.query.count, 10)
return next()
}
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
setPagination
}