Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4233,7 +4233,7 @@ components:
description: "The further instruction to show for the hot job"
jobTag:
type: string
enum: ["", "new", "dollor", "hot"]
enum: ["", "New", "$$$", "Hot"]
description: "The tag of a job"
isApplicationPageActive:
type: boolean
Expand Down Expand Up @@ -4789,7 +4789,7 @@ components:
description: "The further instruction to show for the hot job"
jobTag:
type: string
enum: ["", "new", "dollor", "hot"]
enum: ["", "New", "$$$", "Hot"]
description: "The tag of a job"
isApplicationPageActive:
type: boolean
Expand Down
2 changes: 1 addition & 1 deletion src/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Joi.page = () => Joi.number().integer().min(1).default(1)
Joi.perPage = () => Joi.number().integer().min(1).default(20)
Joi.rateType = () => Joi.string().valid('hourly', 'daily', 'weekly', 'monthly', 'annual')
Joi.jobStatus = () => Joi.string().valid('sourcing', 'in-review', 'assigned', 'closed', 'cancelled')
Joi.jobTag = () => Joi.string().valid('new', 'dollor', 'hot').allow('')
Joi.jobTag = () => Joi.string().valid('New', '$$$', 'Hot').allow('')
Joi.resourceBookingStatus = () => Joi.string().valid('placed', 'closed', 'cancelled')
Joi.workload = () => Joi.string().valid('full-time', 'fractional')
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')
Expand Down