The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to check if reporter is part of a group

Christian Körner
November 25, 2016

In our issue configuration we have a group picker that should be set to one of the groups the reporter is part of.

We now need a validation that checks if the group selected in the group picker is really one of the groups of the reporter. This should be done in the create step of the issue.

Do you have any pointers how to accomplish this?

Thanks in advance!

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
November 26, 2016

Try this code for simple script validator provided by ScriptRuner plugin:

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.fields.CustomField

CustomField groupPicker = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("group picker")
return ComponentAccessor.getGroupManager().isUserInGroup(issue.getCreatorId(), issue?.getCustomFieldValue(groupPicker))