Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pkp/pkp-lib#4787 Reviewer suggestions #4459

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions api/v1/reviewerSuggestions/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php
/**
* @defgroup api_v1_reviewerSuggestions Reviews API requests
*/

/**
* @file api/v1/reviewerSuggestions/index.php
*
* Copyright (c) 2024 Simon Fraser University
* Copyright (c) 2024 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @ingroup api_v1_reviewerSuggestions
*
* @brief
*/

return new \PKP\handler\APIHandler(
new \PKP\API\v1\reviewerSuggestions\ReviewerSuggestionController()
);
9 changes: 9 additions & 0 deletions locale/en/manager.po
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,15 @@ msgstr "Reviewer Ratings"
msgid "manager.setup.reviewOptions.reviewerReminders"
msgstr "Reviewer Reminders"

msgid "manager.setup.reviewOptions.reviewerSuggestionEnabled"
msgstr "Reviewer Suggestion at Submission"

msgid "manager.setup.reviewOptions.reviewerSuggestionEnabled.description"
msgstr "Author can suggest few potntial reviewers before completing the submission which can streamline the review process and provide valuable input for editorial team."

msgid "manager.setup.reviewOptions.reviewerSuggestionEnabled.label"
msgstr "Allow authors to suggest potential reviews at submission process"

msgid "manager.setup.reviewPolicy"
msgstr "Review Policy"

Expand Down
6 changes: 6 additions & 0 deletions schemas/context.json
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,12 @@
"type": "boolean",
"default": false,
"description": "Whether each publication version should receive a unique DOI"
},
"reviewerSuggestionEnabled": {
"type": "boolean",
"validation": [
"nullable"
]
}
}
}