Parent Directory
|
Revision Log
chore: add old version archive branches (2.x to 9.x-dev)
1 | rakinar2 | 577 | import { NextFunction, Response } from "express"; |
2 | import { ZodSchema } from "zod"; | ||
3 | import { log } from "../../utils/logger"; | ||
4 | import Request from "../Request"; | ||
5 | |||
6 | export default async function ValidateMiddleware(schema: ZodSchema, request: Request, response: Response, next: NextFunction) { | ||
7 | try { | ||
8 | const parsedBody = await schema.parseAsync(request.body); | ||
9 | request.parsedBody = parsedBody; | ||
10 | next(); | ||
11 | } catch (e) { | ||
12 | log(e); | ||
13 | response.status(400).json(e); | ||
14 | } | ||
15 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |