We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d898555 commit dcb0a13Copy full SHA for dcb0a13
src/services/JobCandidateService.js
@@ -203,8 +203,8 @@ fullyUpdateJobCandidate.schema = Joi.object().keys({
203
userId: Joi.string().uuid().required(),
204
status: Joi.jobCandidateStatus().default('open'),
205
externalId: Joi.string().allow(null).default(null),
206
- resume: Joi.string().stringAllowEmpty().uri().allow(null).default(null),
207
- remark: Joi.string().stringAllowEmpty().allow(null).default(null)
+ resume: Joi.string().uri().allow('').allow(null).default(null),
+ remark: Joi.string().allow('').allow(null).default(null)
208
}).required()
209
210
0 commit comments