Automatically add watchers for this issue

A L December 14, 2017

Good day!
Can't solve the problem

How to make the creation, issue, automatically add watchers for this issue

All I have found here have not helped solve the problem
Not Script Runner

https://justinit.wordpress.com/2010/12/17/jira-add-watchers-at-issue-creation/

import com.atlassian.jira.ComponentManager

def componentManager = ComponentManager.getInstance()
def watcherManager = componentManager.getWatcherManager()
def userManager = componentManager.getUserUtil()

def watchUsers = {usernames ->
usernames.each {
def user = userManager.getUser(it)
watcherManager.startWatching(user, issue.getGenericValue())
}
}

def users = ["comma", "separated", "usernames"]
watchUsers(users)
Error

https://confluence.atlassian.com/jirakb/add-watchers-in-the-issue-creation-screen-315327528.html

Is not suitable should automatically add watchers

1 answer

0 votes
Thomas Schlegel
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 14, 2017

Hi,

we use a workflow post function of the "Jira Workflow Toolbox" app  for that purpose: Add or remove watchers. It's quite simple and you don't have to code it yourself.

A L December 14, 2017

Thanks that is necessary!!!!

Suggest an answer

Log in or Sign up to answer