Listener for catching abstract JIRA events (watcher added, watcher deleted)

Tsol
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 27, 2014

Hi everybody,

i am trying to create a custom listener, by developing a custom plugin, for catching add or delete watcher on an issue.

I have created the plugin sceleton with atlassian SDK.

I have also took a look in the following API resources:

I have the following problems:

  • I do not know how i will fire the event only when watcher is added or deleted
  • Is it possible to have on issue history the add and delete of watchers?

Thanks in advance.

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 28, 2014

1. You don't fire the event, Jira fires the events when stuff happens, and listeners catch them and do more things. The events are already happening, you probably just want to do things with it.

2. Watcher updates are not currently logged as issue changes. Your listener could do it though "catch event, add line to history" shouldn't be that hard.

Suggest an answer

Log in or Sign up to answer