Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Build-your-own (scripted) Validator

Nodar Vardiashvili
Contributor
April 3, 2020

Hi, I try to write my own scripted validator in JMWE. 

when user create ticket and choose active sprint I want to show error message.

 

I dont know how use jira expression

 

Screenshot_2.png

1 answer

1 vote
David Fischer
Community Champion
April 3, 2020

Hi,

did you read the documentation for writing Conditions and Validators in JMWE for Jira Cloud?

There is no "openSprints()" function in Jira expressions. However, to test whether the issue is in an open sprint, you can do:

issue.sprint != null && (issue.sprint.state == "active" || issue.sprint.state == "future")

Suggest an answer

Log in or Sign up to answer