Skip to content

Commit 76390bf

Browse files
Merge pull request #555 from topcoder-platform/gigs-change-aggs
Gigs Listing project: accept values change
2 parents 68687d1 + 6bd6016 commit 76390bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/swagger.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4233,7 +4233,7 @@ components:
42334233
description: "The further instruction to show for the hot job"
42344234
jobTag:
42354235
type: string
4236-
enum: ["", "new", "dollor", "hot"]
4236+
enum: ["", "New", "$$$", "Hot"]
42374237
description: "The tag of a job"
42384238
isApplicationPageActive:
42394239
type: boolean
@@ -4789,7 +4789,7 @@ components:
47894789
description: "The further instruction to show for the hot job"
47904790
jobTag:
47914791
type: string
4792-
enum: ["", "new", "dollor", "hot"]
4792+
enum: ["", "New", "$$$", "Hot"]
47934793
description: "The tag of a job"
47944794
isApplicationPageActive:
47954795
type: boolean

src/bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Joi.page = () => Joi.number().integer().min(1).default(1)
1313
Joi.perPage = () => Joi.number().integer().min(1).default(20)
1414
Joi.rateType = () => Joi.string().valid('hourly', 'daily', 'weekly', 'monthly', 'annual')
1515
Joi.jobStatus = () => Joi.string().valid('sourcing', 'in-review', 'assigned', 'closed', 'cancelled')
16-
Joi.jobTag = () => Joi.string().valid('new', 'dollor', 'hot').allow('')
16+
Joi.jobTag = () => Joi.string().valid('New', '$$$', 'Hot').allow('')
1717
Joi.resourceBookingStatus = () => Joi.string().valid('placed', 'closed', 'cancelled')
1818
Joi.workload = () => Joi.string().valid('full-time', 'fractional')
1919
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')

0 commit comments

Comments
 (0)