Skip to content

Commit a26bd8f

Browse files
committed
fix: removed validation for source as default is work manager
1 parent 24d2fba commit a26bd8f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/routes/copilotOpportunityApply/create.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ module.exports = [
9090
data: {
9191
user_name: subject.handle,
9292
opportunity_details_url: `${copilotPortalUrl}/opportunity/${opportunity.id}#applications`,
93-
workManagerUrl: config.get('workManagerUrl'),
93+
work_manager_url: config.get('workManagerUrl'),
9494
},
9595
sendgrid_template_id: TEMPLATE_IDS.APPLY_COPILOT,
9696
recipients: [subject.email],

src/routes/copilotRequest/approveRequest.service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ module.exports = (req, data, existingTransaction) => {
6666
data: {
6767
user_name: subject.handle,
6868
opportunity_details_url: `${copilotPortalUrl}/opportunity/${opportunity.id}`,
69-
workManagerUrl: config.get('workManagerUrl'),
69+
work_manager_url: config.get('workManagerUrl'),
7070
},
7171
sendgrid_template_id: TEMPLATE_IDS.CREATE_REQUEST,
7272
recipients: [subject.email],

0 commit comments

Comments
 (0)