Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const schema = joi.object({
- params: joi.object({ // url parameters
- userId: joi.string().guid().required()
- }).unknown(true),
- body: joi.object({ // body variables
- }).unknown(true)
- }).unknown(true);
- schemaValidation(schema, req, res, next);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement