Skip to content

Commit 64c6d2f

Browse files
ci:re-deploying
2 parents 7195efa + 523cd4a commit 64c6d2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/services/JobService.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,8 +332,8 @@ partiallyUpdateJob.schema = Joi.object()
332332
jobTimezone: Joi.stringAllowEmpty().allow(null),
333333
currency: Joi.stringAllowEmpty().allow(null),
334334
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),
337337
hotListExcerpt: Joi.stringAllowEmpty().default('').allow(null),
338338
jobTag: Joi.jobTag().default('').allow(null)
339339
})
@@ -376,8 +376,8 @@ fullyUpdateJob.schema = Joi.object().keys({
376376
jobTimezone: Joi.stringAllowEmpty().allow(null),
377377
currency: Joi.stringAllowEmpty().allow(null),
378378
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),
381381
hotListExcerpt: Joi.stringAllowEmpty().default('').allow(null),
382382
jobTag: Joi.jobTag().default('').allow(null)
383383
}).required()

0 commit comments

Comments
 (0)