Anyone know if it is possible to call a custom field value from within the smart value context? Specifically the substringBetween(String open, String close)
Normally, I can put the two strings like so:
{{issue.description.substringBetween(("Start","End").isNotEmpty()}}
But I was actually wanting to be able to pull in the variable from a field, like so:
{{issue.description.substringBetween((issue.customfield_10700),"End").isNotEmpty()}}
Hi @Bill Goetz
I was able to pull this through. Take a look at my rule:
Let me know if you want anything more.
Perfect Alex! I was overthinking it a bit.
This worked out:
{{issue.description.substringBetween(issue.customfield_10700,"End").isNotEmpty()}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.