File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -404,6 +404,16 @@ router.route('/v5/projects/copilots/opportunities')
404
404
router . route ( '/v5/projects/copilot/opportunity/:id(\\d+)' )
405
405
. get ( require ( './copilotOpportunity/get' ) ) ;
406
406
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
+
407
417
// Project Estimation Items
408
418
router . route ( '/v5/projects/:projectId(\\d+)/estimations/:estimationId(\\d+)/items' )
409
419
. get ( require ( './projectEstimationItems/list' ) ) ;
You can’t perform that action at this time.
0 commit comments