]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/middlewares/search.ts
05a2e744273077df1984909b6e192ff4fc7212da
[github/Chocobozzz/PeerTube.git] / server / middlewares / search.ts
1 function setVideosSearch (req, res, next) {
2 if (!req.query.field) req.query.field = 'name'
3
4 return next()
5 }
6
7 // ---------------------------------------------------------------------------
8
9 export {
10 setVideosSearch
11 }