I want to validate if user have passed the proper issue key in custom field during transition. Is there any elegant way to check if the field contains a valid issue key?
So far I use the following trick, but it is a little "hacky":
if (countIssues("key ="+customfield_00000) > 0)
{
//execcute code, because issue exists
}
else
{
//throw message telling user to provide a proper issue key
}
Any better/shorter ideas how to achieve this?
I think the solution you came up with is pretty good. I can't think of a better way.
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.