W.hen Creating a particular issue "manually" we are requiring an issue link.
We also want to create the issue automatically from another Issue type transition. Due to the mandatory link requirement I am in a "chicken and egg" situation.
I would like to add to my script (scriptrunner) validator that checks for the links, to only validate the link when the "created from" issue is not a specific issue type.
I was trying to use getContextIssue, but this seems to only be available from behaviors, not workflows.
So when "Created From" = Issue type X, then do not validate links. If "Created From = null, then check for links.
I was going down this path, but getContextIssueId() does not resolve
def issueManager = ComponentAccessor.getIssueManager()
def cfId = getContextIssueId()
def contextIssue = issueManager.getIssueObject(cfId)
Any thoughts?
After looking at what is available, I went through the params map and it appears that if created manually the formtoken is supplied. If not, it is not in the params map. I am now looking if the params contain the formtoken to determine whether to check for links or not. Sort of hacky, but it is working. If anyone has any other thoughts I would appreciate it.
if (request) {
def params = request.getParameterMap()
def paramsList = params.toString()
log.debug("params: " + params)
if (paramsList.contains("formToken")) {
....
}
}
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.