Hello,
What is the correct way to update an issues summary field from a custom listener, I am listening on all issue changes.
Alternativly, what would be the best way to update the summary field everytime a specific custom field is changed?
Thank you,
Hi Justin,
This should work when using a Listener:
MutableIssue issue = issue IssueManager im = ComponentAccessor.getIssueManager(); def issueToChange = im.getIssueObject(issue.id) issueToChange.summary = "TEST" def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser() UserManager userManager = ComponentAccessor.getUserManager(); ApplicationUser user = userManager.getUserByName(currentUser.name) im.updateIssue(user, issueToChange, EventDispatchOption.DO_NOT_DISPATCH, false)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.