Subject says it all. I'm building a custom listener with Script Runner that notifies a slack Channel when custom fields are created. I have a listener sending basic notifications when custom fields are Created, Deleted, and Updated but I'd like to enrich the notification with details such as the field name and who made the change.
Eventually I'd like to roll this to workflow and projects events.
@Jamie Echlin [Adaptavist], @Nic Brough [Adaptavist] any thoughts on this one?
Did you check out the javadoc: https://docs.atlassian.com/jira/latest/com/atlassian/jira/event/issue/field/CustomFieldUpdatedEvent.html ?
Surprising, I can't see the actioning user there... most events let you get the user that did it.
So for the examples above, you can get the cf name with:
event.customField.name
I did look there but didn't see anything that told me it should be ".name".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess what was throwing me is that the inline script editor shows an error when I use the example above... "No such property: Name"... specifically:
groovy.lang.MissingPropertyException: No such property: name for class: com.atlassian.jira.event.issue.field.CustomFieldCreatedEvent
The above example still generates the error above.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Trevor by the looks of the API you need:
event.customField.fieldTypeName
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.