Hello all -
We had a consultant some years ago write a few ScriptRunner transition validators, and after updating JIRA to 7.1.7 they no longer work. Unfortunately there was little to no documentation from the consultant, and not knowing how to fix or write new Groovy validators, I'm at a loss. We had two validators:
- On the Accept Transition: Story Points must be a Fibonacci number:
cfValues['Story Points'].toInteger() in [1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233] - Story Points must be greater than zero before transition to Closed:
cfValues['Actual Points'].toInteger() > 0
These allegedly worked before according to the users of the workflow in question. Any help would be greatly appreciated, I am sure to someone who knows Groovy at all can make short work of it, but I've spent hours on this and haven't been able to figure it out.
Thanks!