Init commit
This commit is contained in:
15
server/core/middlewares/validators/express.ts
Normal file
15
server/core/middlewares/validators/express.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user