We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0f5c242 + 5926981 commit fd8d005Copy full SHA for fd8d005
src/common/helper.js
@@ -549,6 +549,12 @@ function * checkGetAccess (authUser, submission) {
549
if (copilot.length !== 0) {
550
return true
551
}
552
+ // Check if the User is a Client Manager
553
+ const clientManager = _.filter(currUserRoles, { role: 'Client Manager' })
554
+ // Client Managers have access to all submissions regardless of Phases
555
+ if (clientManager.length !== 0) {
556
+ return true
557
+ }
558
// Check for Reviewer / Submitter roles
559
if (subTrack === 'FIRST_2_FINISH') {
560
const iterativeReviewer = _.filter(currUserRoles, { role: 'Iterative Reviewer' })
0 commit comments