I have 2 fields (multiple people pickers)
Reviewers and Optional Reviewers
The Check function only allows 1 Reviewer to vote, then it closed the group signoff so others can't vote
Any ideas?
// conditional rule
if (issue.status.name == "Plan Under Review") {
users =""+ helper.getUsersByCustomfield(issue, "Reviewers",",")
+ helper.concat(helper.getUsersByCustomfield(issue, "Optional Reviewers",","), ",") ;
rule ="check(true,1,"+helper.getUsersByCustomfield(issue,"Reviewers",",")+")";