Skip to content

Commit f6177a1

Browse files
committed
fix: use "weekly" rateType for create jobs
1 parent 6b8813c commit f6177a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/events/projects/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ async function projectCreatedKafkaHandler(app, topic, payload) {
213213
skills,
214214
numPositions: Number(job.people),
215215
resourceType: _.get(job, 'role.value', ''),
216-
rateType: 'hourly', // hardcode for now
216+
rateType: 'weekly', // hardcode for now
217217
workload: _.get(job, 'workLoad.title', '').toLowerCase(),
218218
}).then((createdJob) => {
219219
app.logger.debug(`jobId: ${createdJob.id} job created with title "${createdJob.title}"`);

0 commit comments

Comments
 (0)