File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 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')
404404router . 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
408418router . route ( '/v5/projects/:projectId(\\d+)/estimations/:estimationId(\\d+)/items' )
409419 . get ( require ( './projectEstimationItems/list' ) ) ;
You can’t perform that action at this time.
0 commit comments