@@ -9,19 +9,20 @@ const validateURL = (value, helpers) => {
9
9
} ;
10
10
11
11
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
+ } ) ,
25
26
} ) ;
26
27
27
28
module . exports . validateUserBody = celebrate ( {
0 commit comments