Skip to content

Commit d2aa3e9

Browse files
author
himaniraghav3
committed
Fix accidentally removed code
1 parent c7d8d37 commit d2aa3e9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/routes/index.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,16 @@ router.route('/v5/projects/copilots/opportunities')
404404
router.route('/v5/projects/copilot/opportunity/:id(\\d+)')
405405
.get(require('./copilotOpportunity/get'));
406406

407+
// Project copilot opportunity apply
408+
router.route('/v5/projects/copilots/opportunity/:id(\\d+)/apply')
409+
.post(require('./copilotOpportunityApply/create'));
410+
router.route('/v5/projects/copilots/opportunity/:id(\\d+)/applications')
411+
.get(require('./copilotOpportunityApply/list'));
412+
413+
// Copilot opportunity assign
414+
router.route('/v5/projects/copilots/opportunity/:id(\\d+)/assign')
415+
.post(require('./copilotOpportunity/assign'));
416+
407417
// Project Estimation Items
408418
router.route('/v5/projects/:projectId(\\d+)/estimations/:estimationId(\\d+)/items')
409419
.get(require('./projectEstimationItems/list'));

0 commit comments

Comments
 (0)