You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi Guys,
Need one help, how i can put comment using Script Runner rest endpoint, i want to use to use it with Script Fragment Web item (button)...so that if some click on Reminder button, Comment automatically get added tagging Reporter in Comment. Please suggest..
Hi @Vikrant Yadav ,
You can try use the following script to append the comment with the reporter tagging in the comment, for example:
import com.atlassian.jira.component.ComponentAccessor
def commentManager = ComponentAccessor.getCommentManager()
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
String reporter = issue.getReporter().getUsername()
commentManager.create(issue,user,"Hi [~reporter], add a new comment here",true)
I hope this helps.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.