]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/middlewares/search.js
Server: remove encryption when seending requests to other pods
[github/Chocobozzz/PeerTube.git] / server / middlewares / search.js
1 'use strict'
2
3 const searchMiddleware = {
4 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