Hi,
I'm currently working on implementing a solution for a Jira Server environment, and need a certain UI element is only visible on issues In project ITS, with priority 'P1 - Blocking’ or ‘P2 - Hoge prioriteit’ and the user must be a member of the group Resource - Jira SenP or Resource - Jira MT or Resource - Jira PM
I’ve configured a Scriptrunner Fragment for this case.
The element is only shown to user that are member of the group Resource - Jira SenP or Resource - Jira MT or Resource - Jira PM but project and priority are not taken into account.
I use the following code, what mistake am I making in this script?
jiraHelper.project?.key == "ITS" &&
issue.priority?.name in ['P1 - Blocking','P2 - Hoge prioriteit']
import com.atlassian.jira.component.ComponentAccessor
def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
(ComponentAccessor.getGroupManager().getGroupsForUser(currentUser)?.find {it.name in ["Resource - Jira SenP","Resource - Jira MT","Resource - Jira PM"]})