Skip to content

Commit

Permalink
pkp/pkp-lib#10427 update: allows recommendOnly editor to open a new r…
Browse files Browse the repository at this point in the history
…eview round
  • Loading branch information
forgive38 committed Sep 20, 2024
1 parent bccd437 commit f9a75ef
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions classes/decision/Repository.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,13 @@ public function getDecisionTypesMadeByRecommendingUsers(int $stageId): array
case WORKFLOW_STAGE_ID_SUBMISSION:
$recommendatorsAvailableDecisions = [
new SendExternalReview()
];
];
break;
case WORKFLOW_STAGE_ID_EXTERNAL_REVIEW:
$recommendatorsAvailableDecisions = [
new NewExternalReviewRound()
];
$recommendatorsAvailableDecisions = [
new NewExternalReviewRound()
];
break;
}

Hook::call('Workflow::RecommendatorDecisions', [&$recommendatorsAvailableDecisions, $stageId]);
Expand Down

0 comments on commit f9a75ef

Please sign in to comment.