Skip to content

Commit eff97d5

Browse files
Merge pull request #5759 from topcoder-platform/gigs-apply-integration
[Ready Release] Gigs apply integration API Update
2 parents 7b196f2 + fb1a13c commit eff97d5

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ workflows:
342342
filters:
343343
branches:
344344
only:
345-
- gigs-apply-integration
345+
- develop
346346
# This is alternate dev env for parallel testing
347347
- "build-test":
348348
context : org-global

docs/swagger.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,13 @@ components:
122122
description: "The availability of the user"
123123
default: true
124124
example: true
125+
skill:
126+
type: string
127+
description: "The candidate's skills separated via ,"
128+
example: "Java,Angular,SQL Server,JavaScript"
129+
salaryExpectation:
130+
type: integer
131+
description: "The candidate expected salary"
125132
hasProfile:
126133
type: boolean
127134
description: "Whether has profile for the user"

src/server/services/recruitCRM.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,8 @@ export default class RecruitCRMService {
635635
const responseMapping = {
636636
hasProfile: true,
637637
phone: candidate.contact_number,
638+
salaryExpectation: candidate.salary_expectation,
639+
skill: candidate.skill,
638640
resume: candidate.resume,
639641
availability: _.isNil(candidate.available_from) ? true
640642
: new Date(candidate.available_from) <= new Date(),

0 commit comments

Comments
 (0)