Skip to content

Commit

Permalink
pkp/pkp-lib#4787 WIP : Reviewer suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
touhidurabir committed Dec 2, 2024
1 parent 0397982 commit eb3d612
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
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"
]
}
}
}

0 comments on commit eb3d612

Please sign in to comment.