Restricting issue type script (scriptrunner)

Nguyen Tran
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.
October 31, 2017

I'm trying to write a script in scriptrunner to restrict that certain project role can only create ticket for some certain issue type. Here's my try:

import com.atlassian.jira.component.ComponentAccessor

static com.atlassian.jira.issue.IssueFieldConstants.ISSUE_TYPE

 

// if the current user is in the Users role only, set the issue type to "Query", and lock it

def projectRoleManager = ComponentAccessor.getComponent(ProjectRoleManager)

def user = ComponentAccessor.jiraAuthenticationContext.user

 

def remoteUsersRoles = projectRoleManager.getProjectRoles(user, issueContext.projectObject)*.name

if (remoteUsersRoles == ["Test-SIT"]) {

    def constantsManager = ComponentAccessor.getConstantsManager()

    def queryIssueType = constantsManager.getAllIssueTypeObjects().find { it.name == "SIT-Defect" }

    getFieldById(ISSUE_TYPE).with {

        setFormValue(queryIssueType.id)

        setReadOnly(true)

    }

}

I'm getting this error:

image006.pngI'm not very familiar with this. Can someone help me fix this error? 

1 answer

0 votes
Gonchik Tsymzhitov
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 31, 2017

You missed word import:

import 

import static com.atlassian.jira.issue.IssueFieldConstants.ISSUE_TYPE
Nguyen Tran
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.
October 31, 2017

Getting new error. Does this mean i'm missing some library?image001.png

Like Zita Bagi likes this

Suggest an answer

Log in or Sign up to answer