]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Move the count of results for the pagination in constants module
authorChocobozzz <florian.bigard@gmail.com>
Fri, 13 May 2016 18:10:02 +0000 (20:10 +0200)
committerChocobozzz <florian.bigard@gmail.com>
Fri, 13 May 2016 18:10:02 +0000 (20:10 +0200)
server/initializers/constants.js
server/middlewares/pagination.js

index bb141456aba2919d75e11dbd5a0dbdeb2d908833..48e660fe2667ca4926b05cf473d85fb2a9a68146 100644 (file)
@@ -9,6 +9,9 @@ let FRIEND_BASE_SCORE = 100
 // Time to wait between requests to the friends
 let INTERVAL = 60000
 
+// Number of results by default for the pagination
+const PAGINATION_COUNT_DEFAULT = 15
+
 // Number of points we add/remove from a friend after a successful/bad request
 const PODS_SCORE = {
   MALUS: -10,
@@ -37,6 +40,7 @@ module.exports = {
   API_VERSION: API_VERSION,
   FRIEND_BASE_SCORE: FRIEND_BASE_SCORE,
   INTERVAL: INTERVAL,
+  PAGINATION_COUNT_DEFAULT: PAGINATION_COUNT_DEFAULT,
   PODS_SCORE: PODS_SCORE,
   REQUEST_RETRIES: REQUEST_RETRIES,
   THUMBNAILS_SIZE: THUMBNAILS_SIZE,
index 2a426ec2824ef340ca6532b10059c9f4f327faef..9fa43f008a55bb6db7d0c4a79b2e19833f422e4b 100644 (file)
@@ -1,5 +1,7 @@
 'use strict'
 
+const constants = require('../initializers/constants')
+
 const paginationMiddleware = {
   setPagination: setPagination
 }
@@ -7,7 +9,7 @@ const paginationMiddleware = {
 function setPagination (req, res, next) {
   if (!req.query.start) req.query.start = 0
   else req.query.start = parseInt(req.query.start)
-  if (!req.query.count) req.query.count = 15
+  if (!req.query.count) req.query.count = constants.PAGINATION_COUNT_DEFAULT
   else req.query.count = parseInt(req.query.count)
 
   return next()