PeerTube/server/middlewares/search.ts

12 lines
222 B
TypeScript
Raw Normal View History

function setVideosSearch (req, res, next) {
if (!req.query.field) req.query.field = 'name'
return next()
}
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
setVideosSearch
}