I've a single list of our Departments as Customfield. When somebody creates a new ticket this customfield shoud be filled out automattily based on the group membership of the reporter. The name of the groups and the list are the same.
The groovy plugin should do this but i've no clue how.
If you need scripted field from groovy runner - see https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+Fields
As for the usage itself -
import com.atlassian.jira.component.ComponentAccessor def userId = issue.getReporterId(); def groups = ComponentAccessor.getGroupManager().getGroupNamesForUser(userId); def result = ""; for (def group: groups) result += result.length() > 0? ", " + group: group; return result;
No a scripted field wouldn't work, it must be a group from that list
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.