File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ module.exports = {
70
70
71
71
LEGACY_REVIEWER_ROLE_ID : process . env . LEGACY_REVIEWER_ROLE_ID || 4 ,
72
72
LEGACY_REVIEW_PHASE_ID : process . env . LEGACY_REVIEW_PHASE_ID || 4 ,
73
+ LEGACY_REVIEWER_ITERATIVE_ROLE_ID : process . env . LEGACY_REVIEWER_ITERATIVE_ROLE_ID || 21 ,
73
74
LEGACY_REVIEWER_PAYMENT_TYPE_ID : process . env . LEGACY_PROJECT_REVIEW_PAYMENT_TYPE_ID || 3 ,
74
75
COPILOT_PAYMENT_TYPE : process . env . COPILOT_PAYMENT_TYPE || 'copilot'
75
76
}
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ async function forceV4ESFeeder (legacyId) {
198
198
}
199
199
200
200
function isReviewerRole ( roleId ) {
201
- return roleId === config . REVIEWER_ROLE_ID || roleId === config . ITERATIVE_REVIEWER_ROLE_ID
201
+ return roleId === config . REVIEWER_ROLE_ID || roleId === config . ITERATIVE_REVIEWER_ROLE_ID || roleId == config . LEGACY_REVIEWER_ROLE_ID || roleId == config . LEGACY_REVIEWER_ITERATIVE_ROLE_ID
202
202
}
203
203
204
204
module . exports = {
You can’t perform that action at this time.
0 commit comments