aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/express.ts
blob: 718aec55b141479ca7130c6e23cde9a8d68ecb14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}