Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

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 Champion
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
TAGS
AUG Leaders

Atlassian Community Events