Hello,
When a JPD idea is being created using “create idea” button (see the screenshot), an event of type avi:jira:updated:issue is being fired. However, there are two problems with this behavior:
- It is in fact not an avi:jira:updated:issue event, but avi:jira:created:issue event.
- avi:jira:updated:issue emits wrong changelog.
This makes nearly impossible to handle this event correctly. In my case, I want to get the summary from event payload, but when creating an idea its changelog doesn’t include any changelog item for summary field (however as it is the new idea and summary didn’t exist before, it should have included in changelog), instead it includes item of “rank”.
Below is the example of the changelog, which doesn’t make sense:
"changelog": {"id":"11903","items":[{"field":"Rank", "fieldtype":"custom", "fieldId":"customfield_10019", "from":"", "fromString":null, "to":"", "toString":null }]}
Can you please fix this behavior, ideally allow it make it emit avi:jira:created:issue event, or add summary to changelog?
Thank you!