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

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

kumar hai February 15, 2019

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

Suggest an answer

Log in or Sign up to answer
0 votes
kumar hai February 26, 2019

@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.
February 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

TAGS
AUG Leaders

Atlassian Community Events