Skip to content

Commit 3e20293

Browse files
accept values update
1 parent e65e119 commit 3e20293

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Joi.rateType = () => Joi.string().valid('hourly', 'daily', 'weekly', 'monthly',
88
Joi.jobStatus = () => Joi.string().valid('sourcing', 'in-review', 'assigned', 'closed', 'cancelled')
99
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')
1010
Joi.workload = () => Joi.string().valid('full-time', 'fractional')
11-
Joi.jobTag = () => Joi.string().valid('new', 'dollor', 'hot').allow('')
11+
Joi.jobTag = () => Joi.string().valid('New', '$$$', 'Hot').allow('')
1212
Joi.title = () => Joi.string().max(128)
1313
// Empty string is not allowed by Joi by default and must be enabled with allow('').
1414
// See https://joi.dev/api/?v=17.3.0#string fro details why it's like this.

0 commit comments

Comments
 (0)