File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
projects/detail/containers Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -711,6 +711,7 @@ export const ACCOUNTS_APP_REGISTER_URL = process.env.ACCOUNTS_APP_REGISTER_URL |
711711
712712export const TC_API_URL = `https://api.${ DOMAIN } `
713713export const DIRECT_PROJECT_URL = `https://www.${ DOMAIN } /direct/projectOverview?formData.projectId=`
714+ export const WORK_MANAGER_APP = `https://challenges.${ DOMAIN } /projects`
714715export const SALESFORCE_PROJECT_LEAD_LINK = process . env . SALESFORCE_PROJECT_LEAD_LINK
715716export const TC_NOTIFICATION_URL = process . env . TC_NOTIFICATION_URL || `${ TC_API_URL } /v5/notifications`
716717// Uncomment if you run TC Notifications locally
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import {
1717 PROJECT_ROLE_MANAGER ,
1818 DIRECT_PROJECT_URL ,
1919 SALESFORCE_PROJECT_LEAD_LINK ,
20+ WORK_MANAGER_APP ,
2021 PROJECT_STATUS_CANCELLED ,
2122 PROJECT_STATUS_ACTIVE ,
2223 PROJECT_STATUS_COMPLETED ,
@@ -436,6 +437,7 @@ class ProjectInfoContainer extends React.Component {
436437 ] , currentMemberRole ) > - 1
437438 if ( isMemberOrCopilot || isSuperUser ) {
438439 directLinks = [ ]
440+ directLinks . push ( { name : 'Launch Work Manager' , href : `${ WORK_MANAGER_APP } /${ project . id } /challenges` } )
439441 if ( project . directProjectId ) {
440442 directLinks . push ( { name : 'Project in Topcoder Direct' , href : `${ DIRECT_PROJECT_URL } ${ project . directProjectId } ` } )
441443 } else {
You can’t perform that action at this time.
0 commit comments