Using Behaviours to restrict issue type selection for project role

Judith Becker November 28, 2017

We use a behaviours script to restrict the issue type selection for a specific project role.

For the restriction to one issue type the following script works perfectly:

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.roles.ProjectRoleManager

import static com.atlassian.jira.issue.IssueFieldConstants.ISSUE_TYPE
def constantsManager = ComponentAccessor.getConstantsManager()
def queryIssueType = constantsManager.getAllIssueTypeObjects().find { it.name == "Feedback"}
def IssueType = getFieldById(ISSUE_TYPE)
IssueType.setFormValue(queryIssueType.id)

 

The question is: How to change the script for a restriction to TWO issue types???

2 answers

1 accepted

1 vote
Answer accepted
Jenna Davis
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.
December 7, 2017

Hello, 

What version of ScriptRunner are you currently using? 

There is a bug that may prevent you from being able to do this effecting newer versions.

Jenna

Judith Becker December 7, 2017

Hi Jenna,

we are using the version 5.2.2 of ScriptRunner.

Will there be a solution for the bug in the near future?

 

Thanks,

Judith

Jenna Davis
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.
December 7, 2017

I believe that bug will effect you then.

I'm afraid we don't have a set timeline for issues, so I cannot give you a good estimate.

Jenna

Mani Reddy May 17, 2018

@Judith Becker Try this approach.

import com.atlassian.jira.component.ComponentAccessor
def groupManager = ComponentAccessor.getGroupManager()

issue.projectObject.key == 'AR' &&
(!groupManager.isUserInGroup(issue.reporter?.name, 'abc') &&
issue.issueType.name in 'Bug' ||'Story')

0 votes
Azfar Masut
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.
July 10, 2019

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events