Skip to content

Commit ea82b99

Browse files
committed
modify validation
1 parent c344ea0 commit ea82b99

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

middlewares/validation.js

+14-13
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,20 @@ const validateURL = (value, helpers) => {
99
};
1010

1111
module.exports.validateCardBody = celebrate({
12-
body: Joi.object()
13-
.keys({
14-
name: Joi.string().required().min(2).max(30).messages({
15-
"string.min": 'The minimum length of the "name" field is 2',
16-
"string.max": 'The maximum length of the "name" field is 30',
17-
"string.empty": 'The "name" field must be filled in',
18-
}),
19-
imageUrl: Joi.string().required().custom(validateURL).messages({
20-
"string.empty": 'The "imageUrl" filed must be filled in',
21-
"string.uri": 'The "imageUrl" must be a valid url',
22-
}),
23-
})
24-
.unknown(true),
12+
body: Joi.object().keys({
13+
name: Joi.string().required().min(2).max(30).messages({
14+
"string.min": 'The minimum length of the "name" field is 2',
15+
"string.max": 'The maximum length of the "name" field is 30',
16+
"string.empty": 'The "name" field must be filled in',
17+
}),
18+
imageUrl: Joi.string().required().custom(validateURL).messages({
19+
"string.empty": 'The "imageUrl" filed must be filled in',
20+
"string.uri": 'The "imageUrl" must be a valid url',
21+
}),
22+
weather: Joi.string().valid("hot", "warm", "cold").required().messages({
23+
"string.empty": 'The "weather" filed must be filled in',
24+
}),
25+
}),
2526
});
2627

2728
module.exports.validateUserBody = celebrate({

0 commit comments

Comments
 (0)