You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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"]})
In the current version of your script, you have 2 separate conditions in 2 separate lines, but only the last one counts.
Maybe rearrange things a little like this:
import com.atlassian.jira.component.ComponentAccessor
def currentUser = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def projectList= ['ITS']
def priorityList = ['P1 - Blocking','P2 - Hoge prioriteit']
def groupList = ["Resource - Jira SenP","Resource - Jira MT","Resource - Jira PM"]
def isInProjectList= jiraHelper.project?.key in projectList
def isInPriorityList = issue.priority?.name in priorityList
def isInGroupList = ComponentAccessor.groupManager.getGroupsForUser(currentUser).any{it.name in groupList}
isInProjectList && isInPriorityList && isInGroupList
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.