Skip to content

Commit

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

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

0 comments on commit bccd437

Please sign in to comment.