Hello,
In workflow conditions we have the ability to restrict the execution of a transition by users in a specific group, I want the exact opposite of this, i.e. people who are part of suppose GROUP A should not be able to execute the transition.
Please share your opinion.
Hi Tarun,
This plugin does exactly what you are looking for. Use version 1.0.1 of the plugin.
Refer the documentation here
https://bitbucket.org/bhushan154/not-reporter-workflow-plugin/wiki/Home
If you have any issues raise them at
https://bitbucket.org/bhushan154/not-reporter-workflow-plugin/issues?status=new&status=open
You can download the plugin here
https://bitbucket.org/bhushan154/not-reporter-workflow-plugin/downloads
Hi Bhushan,
It seems very useful, can you tell whether is compatible with JIRA 4.4.4 or not?
Cheers,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It should be. You can try it out and let me know if you face any issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Short answer: ScriptRunner, JJupin.
In JJupin condition for this is simply written as:
return !(userInGroup("GroupA", currentUser()));
For complex operations, you have the possibility to create reunions of sets and intersections of sets:
http://confluence.kepler-rominfo.com/display/SIL/arrayUnion
http://confluence.kepler-rominfo.com/display/SIL/arrayIntersect
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
how to do it with ScriptRUnner?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Search answers etc for UserUtil. It's something like:
import com.atlassian.jira.component.ComponentAccessor ! ComponentAccessor.getUserUtil().getGroupNamesForUser(currentUser.name).contains("Group A")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Add an other group B or create role contain users who are ableto execute transition.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
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.