Hi
In the "Resolve Issue" screen, when the user enters the issues in the "Issue" field:
my Custom script validator (ScriptRunner) Groovy code only picks up the first bug speciified (ex: PRJ-1)
def request = webwork.action.ActionContext.getRequest()
def linkedIssueString = request.getParameter('issuelinks-issues')
log.debug(String.format('linkedIssueString is [%s]', linkedIssueString))
The log files show:
linkedIssueString is [PRJ-1]
Can someone please let me know how i can access all issues specified (ex: PRJ-1 and PRJ-2)?
--OR--
How can i restrict the UI to allow the user to specify only just one Jira issue?
Thanks
--Andrew
Try to use
def linkedIssueString = request.getParameterValues("
issuelinks-issues");
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.