Hi,
I want to restrict my transition (Approve / Deny) based on which group the current user is a member of.
In order to achieve this I am using the script below
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
def groupManager = ComponentAccessor.getGroupManager()
def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
groupManager.isUserInGroup(currentUser, "Murex Task Team")
The script returns true/ false when I change the group and when I run this in script console, as expected.
But when I add it to the Workflow Transition condition it always evaluates to true allowing me to complete the transition irrespective of the group specified , please can you suggest what's wrong with the script?
I know I can use the build in "User Is In Group "condition to do this, but I want to extend this to pickup the group name from a Custom field on the issue therefore I am trying this method.
Thanks
Sar
Hi Sar,
Which version of SR and JIRA are you using? This script works fine for me. Have you made sure that you added the validator to the correct workflow step?
Could you try adding a logging statement to see which groups the currentUser is in?
import com.atlassian.jira.component.ComponentAccessor
def groupManager = ComponentAccessor.getGroupManager()
def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
log.debug(groupManager.getGroupNamesForUser(currentUser))
groupManager.isUserInGroup(currentUser, "Murex Task Team")
What is output to the log after using this script as a validator?
Make sure you are using Simple Scripted Condition, or Simple Scripted Validator. A screenshot would help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Guys,
I am so sorry for not replying earlier.
The reason it was not working was because I was using Custom script condition instead of Simple scripted condition.
All good now.
Thank you :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Custom script condition should work, except if you're on an old version of the plugin. If you are, you need to set passesCondition to a boolean. Simple scripted condition is easier.
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.