Hi,
title says it all.
I have transition screen to force a person to fill in a linked issue. How can I set a validator to only allow the user to select a linked issue from a specific project?
Key: "BD"
Cheers,
Jason
Create a simple scripted workflow validator on the same transition as the screen where the user is inputting the linked issues. This script will make sure all the users choices issues are part of the project with key "BD".
import com.atlassian.jira.component.ComponentAccessor
import webwork.action.ActionContext
def fieldManager = ComponentAccessor.fieldManager
def issueManager = ComponentAccessor.issueManager
def linksSystemField = fieldManager.getField("issuelinks")
def request = ActionContext.request
def params = request.parameterMap
def issueLinkingValue = linksSystemField.getRelevantParams(params)
def linkedIssues = issueLinkingValue.linkedIssues
def linkedIssueProjects = linkedIssues.collect { issueManager.getIssueObject(it).projectObject.key }
linkedIssueProjects == ["BD"]
Thank you very much! It worked absolutely as expected.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.