@@ -332,8 +332,8 @@ partiallyUpdateJob.schema = Joi.object()
332
332
jobTimezone : Joi . stringAllowEmpty ( ) . allow ( null ) ,
333
333
currency : Joi . stringAllowEmpty ( ) . allow ( null ) ,
334
334
roleIds : Joi . array ( ) . items ( Joi . string ( ) . uuid ( ) . required ( ) ) . allow ( null ) ,
335
- showInHotList : Joi . boolean ( ) . default ( false ) . allow ( null ) ,
336
- featured : Joi . boolean ( ) . default ( false ) . allow ( null ) ,
335
+ showInHotList : Joi . boolean ( ) . default ( false ) ,
336
+ featured : Joi . boolean ( ) . default ( false ) ,
337
337
hotListExcerpt : Joi . stringAllowEmpty ( ) . default ( '' ) . allow ( null ) ,
338
338
jobTag : Joi . jobTag ( ) . default ( '' ) . allow ( null )
339
339
} )
@@ -376,8 +376,8 @@ fullyUpdateJob.schema = Joi.object().keys({
376
376
jobTimezone : Joi . stringAllowEmpty ( ) . allow ( null ) ,
377
377
currency : Joi . stringAllowEmpty ( ) . allow ( null ) ,
378
378
roleIds : Joi . array ( ) . items ( Joi . string ( ) . uuid ( ) . required ( ) ) . default ( null ) ,
379
- showInHotList : Joi . boolean ( ) . default ( false ) . allow ( null ) ,
380
- featured : Joi . boolean ( ) . default ( false ) . allow ( null ) ,
379
+ showInHotList : Joi . boolean ( ) . default ( false ) ,
380
+ featured : Joi . boolean ( ) . default ( false ) ,
381
381
hotListExcerpt : Joi . stringAllowEmpty ( ) . default ( '' ) . allow ( null ) ,
382
382
jobTag : Joi . jobTag ( ) . default ( '' ) . allow ( null )
383
383
} ) . required ( )
0 commit comments