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
Hi all
I would like to disable a tab for everyone but a specific security group but for some reason it's not seeing my condition and just disabling it for everyone
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.roles.ProjectRoleManager
// Get the current user
def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
def groupManager = ComponentAccessor.getGroupManager()
if (ComponentAccessor.getGroupManager().getGroupsForUser(currentUser)?.find { it.name != "Jira Service Desk Time Log" })
{
disableTab(1)
}
See I want to hide it from all users except that group so I need it to be a != unless you can think of a better way
May I clarify?
someA = [a,b,c,d,f]
someB = [a,b,c,f]
someC = [a,b]
I suppose we want exclude 'd'. We should return 'true' for someB and someC.
1. return true only for someA:
if ( some.find{ it == 'd'} )
someA - true (can find 'd')
someB - false (cannot find 'd')
someC - false(cannot find 'd')
2. Inverse result:
if ( ! some.find{ it == 'd'} )
someA - false (can find 'd')
someB - true (cannot find 'd')
someC - true (cannot find 'd')
B.R.