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,
When an issue is created, the assignee must be the reporter, but if this assignee is NOT part of a specific group, the assignee must be the project lead.
I was trying to make 2 post functions, the first "assign to reporter" and the next, if current user is not part of a group "X" then assign to specific role or project lead.
I thought that it would be pretty simple and found some links doing similar things with script runner but I have been trying and I can't get it working... I'm pretty useless with scripting, developing and all of this kind of things. The people in my org who are in charge of scripts, listeners, etc, are on vacations right now and I need a resolution as quickly as possible.
Can someone, please, help me?
Hello Cristian,
You should be able to do something like this, as long as I read the requirements correctly:
import com.atlassian.jira.component.ComponentAccessor
def assignee = issue.assignee
def reporter = issue.reporter
def lead = issue.getProjectObject().projectLead
def groupA = ComponentAccessor.groupManager.getGroup("GroupA")
if(assignee != reporter){
return false
}
else {
if(!ComponentAccessor.groupManager.getUserNamesInGroup(groupA).contains(assignee.username)){
if(assignee == lead){
return true
}
else {return false}
}
else {return true}
}
Note: I didn't test this, so typos are possible - let me know if something isn't working.
If this example doesn't help could you send me what you have so far? I might be able to fix up what you've written already. :)
Jenna
Hi Jenna, sorry for the delay,
Another member of my company did it and I see that your solution is different than his solution. Thank you, I will try this in my test local instance and see if this works.
Regards!
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.