1
0
Fork 0
peertube/server/middlewares/search.ts
2017-05-20 09:57:40 +02:00

11 lines
222 B
TypeScript

function setVideosSearch (req, res, next) {
if (!req.query.field) req.query.field = 'name'
return next()
}
// ---------------------------------------------------------------------------
export {
setVideosSearch
}