You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I am trying to set up a project so that when an issue is in a particular Security Level a particular group can add comments but the behaviour below just does not seem to make any difference.
So if security Level = 123 and User is in group ABC they can comment, if not then they can't.
import com.onresolve.jira.groovy.user.FieldBehaviours
import com.atlassian.jira.component.ComponentAccessor
def level = getFieldById("security").getValue()
def comm = getFieldById("comment")
def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
if (level == 11200 && ComponentAccessor.getGroupManager().isUserInGroup(currentUser, "EXTERNAL - Group") )
{
comm.setReadOnly(true)
}
else if (level == 11201 && ComponentAccessor.getGroupManager().isUserInGroup(currentUser, "EXTERNAL - Group"))
{
comm.setReadOnly(false)
}
I figured this one out in the end, I had to tweak the security levels and add a group field to the Add Comment permission to make it work.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.