Good day good people,
I've created a custom scripted field that gets the Reporter's Groups value. My problem is though, that some reporters are in more than one group, like fx. "jira-users" and "jira-qa" and now it returns a list of groups, but I only want certain groups to be shown.
Is there a way I can only add certain groups to the field, fx. if the reporter is in mentioned groups above, that it only adds the "jira-qa" group to the custom field. Basically I want "jira-administrators", "jira-developers" and "jira-users" NOT to be shown, if that's easier.
You can define a list of groups that should be ignored and subtract this list from the list of groups of the reporter.
ignoredGroups = ['jira-users', 'jira-developers']
resultGroups = reporterGroups - ignoredGroups
This only works if you are working with the group names.
Henning
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.