Handle error for the video upload
[oweals/peertube.git] / server / middlewares / sort.js
1 'use strict'
2
3 const sortMiddleware = {
4   setVideosSort: setVideosSort
5 }
6
7 function setVideosSort (req, res, next) {
8   if (!req.query.sort) req.query.sort = '-createdDate'
9
10   return next()
11 }
12
13 // ---------------------------------------------------------------------------
14
15 module.exports = sortMiddleware