]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/middlewares/pagination.ts
Better 413 error handling in cli script
[github/Chocobozzz/PeerTube.git] / server / middlewares / pagination.ts
index 9b497b19e78dfe778a0cf8f2276e3beec49b027c..9812af9e48101b72b9a9c678c5237bb665da9d4e 100644 (file)
@@ -1,17 +1,13 @@
-import 'express-validator'
-import * as express from 'express'
-
-import { PAGINATION } from '../initializers'
+import express from 'express'
+import { PAGINATION } from '../initializers/constants'
 
 function setDefaultPagination (req: express.Request, res: express.Response, next: express.NextFunction) {
   if (!req.query.start) req.query.start = 0
   else req.query.start = parseInt(req.query.start, 10)
 
-  if (!req.query.count) req.query.count = PAGINATION.COUNT.DEFAULT
+  if (!req.query.count) req.query.count = PAGINATION.GLOBAL.COUNT.DEFAULT
   else req.query.count = parseInt(req.query.count, 10)
 
-  if (req.query.count > PAGINATION.COUNT.MAX) req.query.count = PAGINATION.COUNT.MAX
-
   return next()
 }