You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Good afternoon, please tell me. How can you create a check on a custom field to create an insight object.
In my case, I want to make an insight post-function in which an object is created if the custom field = text value, if the field value is different then the object is not created.
My custom field ID is 13600
value = test
I tried to do nothing according to the article
https://documentation.mindville.com/insight/5.0/insight-for-developers/groovy-script-examples/validators/validate-an-insight-custom-field
Hi,
You should use the Insight post function called Create an Insight Object from a Jira Issue to create a new object. In that post function you can add a groovy condition like this one if you have a text field:
import com.atlassian.jira.component.ComponentAccessor
def field = ComponentAccessor.getCustomFieldManager().getCustomFieldObject(11400)// Change ID to the correct one
def value = issue.getCustomFieldValue(field);
return (value == "acceptedvalue")
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.