Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,560,622
Community Members
 
Community Events
185
Community Groups

Script runner validation- only specific group people can close the transistion

Hi,

By using script runner I'm trying to achieve, When Group A(single user picker) value present only Group A people can close the issue if not any user who is working on the issue can close the ticket, Please help me achieve this, I'm new to script runner.

2 answers

@Thanos Batagiannis [Adaptavist] thank you for your response, if the Group picker1 or Group picker2  doest have a value anyone from following assignee, reporter,caseworker,supervisor can close the ticket. otherwise only Group1(single user picker) or Group 2(single user picker) can close the ticket. 

0 votes
Thanos Batagiannis [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Feb 22, 2019

Hi Kumar, 

I am not sure I understand what should happen in the case that the Group Picker doesn't have any value, but I think the following snippet will help you

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.user.ApplicationUser

def currentUser = currentUser as ApplicationUser
def issue = issue as MutableIssue

def customFieldManager = ComponentAccessor.customFieldManager
def customField = customFieldManager.getCustomFieldObjects(issue).find {it.name == "GroupPicker"}
def customFieldValue = issue.getCustomFieldValue(customField) as String

if (!customFieldValue) {
//the custom field doesn't have any value do something
}
else {
def groupManager = ComponentAccessor.groupManager
def group = groupManager.getGroup(customFieldValue)
return groupManager.isUserInGroup(currentUser, group)
}

regards, 

Thanos

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events