Current situation:
Wish
Current implementation
I've the following condition
issueLinkManager.getOutwardLinks(issue.id)*.destinationObject!(cfValues['Set Reported Issue Public?']?.value == "No"
However, I'm getting an error:
Script270.groovy: 1: expecting EOF, found '!' @ line 1, column 62. s(issue.id)*.destinationObject!(cfValues
Not sure how to implement the condition.
Hey @Berry Kersten, in this case, if you're accessing a custom field value from your project X within a post function in your project Y, the issue in Y would have an inward link to X. I would slightly change your condition code to something like:
issueLinkManager.getInwardLinks(issue.id)*.destinationObject*.getCustomFieldValue(customFieldManager.getCustomFieldObject("customfield_<id>")).equals("No")
Even fixing it, I believe you will probably find some challenges to make it work. If I'm not mistaken, in the create transition, you will not have access to the linked issue object before it gets indexed.
Perhaps, as an alternative and way less painful, through the Clones an issue, and links post function in project X, in Additional issue actions, you can add the following snippet
def cf = customFieldManager.getCustomFieldObjects(sourceIssue).find {it.name == 'Set Reported Issue Public?'}
if (sourceIssue.getCustomFieldValue(cf).toString().equals("No")) {
issue.setSecurityLevelId(<id>)
}
I hope it helps,
IL.
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.