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 e65e119 commit 3e20293Copy full SHA for 3e20293
src/bootstrap.js
@@ -8,7 +8,7 @@ Joi.rateType = () => Joi.string().valid('hourly', 'daily', 'weekly', 'monthly',
8
Joi.jobStatus = () => Joi.string().valid('sourcing', 'in-review', 'assigned', 'closed', 'cancelled')
9
Joi.jobCandidateStatus = () => Joi.string().valid('open', 'placed', 'selected', 'client rejected - screening', 'client rejected - interview', 'rejected - other', 'cancelled', 'interview', 'topcoder-rejected', 'applied', 'rejected-pre-screen', 'skills-test', 'skills-test', 'phone-screen', 'job-closed', 'offered', 'withdrawn', 'withdrawn-prescreen')
10
Joi.workload = () => Joi.string().valid('full-time', 'fractional')
11
-Joi.jobTag = () => Joi.string().valid('new', 'dollor', 'hot').allow('')
+Joi.jobTag = () => Joi.string().valid('New', '$$$', 'Hot').allow('')
12
Joi.title = () => Joi.string().max(128)
13
// Empty string is not allowed by Joi by default and must be enabled with allow('').
14
// See https://joi.dev/api/?v=17.3.0#string fro details why it's like this.
0 commit comments