Skip to content

Commit 02ce93e

Browse files
committed
fix: allow null for "resume"
1 parent ab71b37 commit 02ce93e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/JobCandidateProcessorService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ processCreate.schema = {
101101
updatedBy: Joi.string().uuid().allow(null),
102102
status: Joi.jobCandidateStatus().required(),
103103
externalId: Joi.string().allow(null),
104-
resume: Joi.string().uri()
104+
resume: Joi.string().uri().allow(null),
105105
}).required()
106106
}).required(),
107107
transactionId: Joi.string().required()

0 commit comments

Comments
 (0)