blob: 718aec55b141479ca7130c6e23cde9a8d68ecb14 (
plain) (
tree)
|
|
import * as express from 'express'
const methodsValidator = (methods: string[]) => {
return (req: express.Request, res: express.Response, next: express.NextFunction) => {
if (methods.includes(req.method) !== true) {
return res.sendStatus(405)
}
return next()
}
}
export {
methodsValidator
}
|