Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi! I'm trying to dinaically change the comments' author in a project in order to, in certain way, to anonymize it.
I added a listener to the Issue Comment event with the following ScriptRunners code:
I can see in the logs of the event the name of the original author and then , "John Doe" data.
But finally the author doesn't change. I think it's not enough with the last line of code ... or jira is running something after the execution of my listener.
Any ideas will be apreciated !
Hi @fobrutsky
Last time I face this use case I end up creating a new comment by copying the current comment then deleting the old one. Pretty sure I did not manage to make the update function worked.
So something like that:
new comment = commentManager.create(comment.getIssue, YOURNEWUSER, comment.getBody(), comment.getCreated())
commentManager.delete(comment)
You need to select the create function that worked for you.
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.