diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-06-10 22:15:25 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-06-10 22:15:25 +0200 |
commit | 69818c9394366b954b6ba3bd697bd9d2b09f2a16 (patch) | |
tree | ad199a18ec3c322460d6f9523fc383ee562554e0 /server/middlewares/validators/utils.ts | |
parent | 4d4e5cd4dca78480ec7f40e747f424cd107376a4 (diff) | |
download | PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.tar.gz PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.tar.zst PeerTube-69818c9394366b954b6ba3bd697bd9d2b09f2a16.zip |
Type functions
Diffstat (limited to 'server/middlewares/validators/utils.ts')
-rw-r--r-- | server/middlewares/validators/utils.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/middlewares/validators/utils.ts b/server/middlewares/validators/utils.ts index 710e65529..0424d5942 100644 --- a/server/middlewares/validators/utils.ts +++ b/server/middlewares/validators/utils.ts | |||
@@ -1,9 +1,10 @@ | |||
1 | import 'express-validator' | ||
2 | import * as express from 'express' | ||
1 | import { inspect } from 'util' | 3 | import { inspect } from 'util' |
2 | 4 | ||
3 | import { logger } from '../../helpers' | 5 | import { logger } from '../../helpers' |
4 | 6 | ||
5 | function checkErrors (req, res, next, statusCode?) { | 7 | function checkErrors (req: express.Request, res: express.Response, next: express.NextFunction, statusCode = 400) { |
6 | if (statusCode === undefined) statusCode = 400 | ||
7 | const errors = req.validationErrors() | 8 | const errors = req.validationErrors() |
8 | 9 | ||
9 | if (errors) { | 10 | if (errors) { |