Forums

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

how to set/update assignee of issue using Listeners

Sneha Gole
Contributor
March 7, 2021

how to set/update assignee of issue using Listeners.

Thanks .

2 answers

1 vote
Sneha Gole
Contributor
March 7, 2021

i have find solution ,

 

IssueManager issueManager = ComponentAccessor.getIssueManager()
UserManager userManager = ComponentAccessor.getUserManager()
def issueService = ComponentAccessor.getIssueService()
def issue = issueManager.getIssueObject("ECA-888")

log.warn userManager.allUsers

def user = userManager.getUserByName("Assigee_Name")
def validateAssignResult = issueService.validateAssign(user, issue.id, "Assigee_Name")
issueService.assign(user, validateAssignResult)

Ismael Jimoh
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.
March 7, 2021

Hi @Sneha Gole 

Does this impact just one issue? If yes and your listener is tasked for just that then this is all good.

However, if you are setting the assignee on all issues in a project replace 

def issue = issueManager.getIssueObject("ECA-888"

With

Def issue = event.issue

Cheers.

0 votes
Fazila Ashraf
Community Champion
March 7, 2021

Hi @Sneha Gole 

The line of code should be same as in a previous thread to set assignee during postfunction - https://community.atlassian.com/t5/Marketplace-Apps-Integrations/Set-Assignee-in-Post-Function/qaq-p/355826

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events