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