-
Notifications
You must be signed in to change notification settings - Fork 36
Support multiple reviewer/area chair roles per submission #3009
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
Open
melisabok
wants to merge
18
commits into
master
Choose a base branch
from
fix/parametrize-reviewers-roles
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
a413fd9
parametrize reviewers_name to create submission group invitation
melisabok 69f0d8c
close deadline to create reviewers groups
melisabok e6652b1
activate submission group invitations
melisabok fe5bd44
set a submission committee name to deploy assignments
melisabok 3ebe50c
test area chair roles
melisabok 7b7cc39
create review form
melisabok 2194e50
introduce submission_reviewer_roles to parametrize reviewer groups
melisabok fb1ad51
refactor
melisabok 4a22048
do not store recruitment settings of every role in the domain
melisabok 9a75d53
fix tests
melisabok ea0bbca
fix test
melisabok fc5c66b
more refactoring
melisabok 2ff7d8a
add test
melisabok 79760c3
Merge branch 'master' into fix/parametrize-reviewers-roles
melisabok 15cf255
make sure the role is set for every review stage
melisabok 31c7d21
remove commented code
melisabok 92d5635
fix test
melisabok 6636a92
remove double call
melisabok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In per_role layouts,
self.venue.get_reviewers_id(number)can point to a per-submission group that is never created (e.g..../Submission1/Reviewerswhen submissions use.../Submission1/Expert_Reviewers+.../Submission1/Technical_Reviewers). This means area-chair paper-group readers may reference a non-existent group and won't actually grant access to the assigned reviewers. Consider deriving the correct per-submission reviewer group(s) fromname(e.g., map AC role -> correspondingsubmission_reviewer_rolesentry) or include allvenue.submission_reviewer_rolesfor that paper whenREVIEWERS_ASSIGNEDis enabled.