You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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
Certainly the update function should work :) but it don't. So, good idea!. Will do the way you suggest. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.