Require an specific issue link on transition

Rodrigo Silva May 15, 2017

Hi,

I'm trying to block the creation of an issue, if its of a certain type and doesn't have a specific link. I'm using a script runner groovy validator to do that:

def isPackaging = issue.issueType.name == 'Packaging and certifications'
def hasLinkToSample = issueLinkManager.getOutwardLinks(issue.getId())*.issueLinkType.name.contains('Relates to sample')

return (isPackaging && hasLinkToSample)||!isPackaging

However, it doesn't work. What appears to be happening is that, even when I do add a link of type "Relates to sample", the variable "hasLinkToSample" evaluates to false.

Does anybody know what am I doing wrong here?

Thanks,

1 answer

1 accepted

0 votes
Answer accepted
Daniel Yelamos [Adaptavist]
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.
May 16, 2017

Hi Rodrigo.

Validating links in transitions is a bit more complicated than the example shows. 

The correct example for this can be seen in the documentation, you can access the example in this link:

The reason why it doesn't work is because the issue is not yet created, so issue.getId() returns null. In the example avobe you will access the field directly. 

If we can help you with anything else, let us know.

Cheers

DYelamos

Suggest an answer

Log in or Sign up to answer