1 2 3 4 5 6 7 8 9 10 11 12 13 14
import 'express-validator' import * as express from 'express' function setVideosSearch (req: express.Request, res: express.Response, next: express.NextFunction) { if (!req.query.field) req.query.field = 'name' return next() } // --------------------------------------------------------------------------- export { setVideosSearch }