How do i search for comments where @ was used to send the comment to someone?

Nati Levi December 15, 2016
 

2 answers

1 vote
Alex Suslin
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.
December 15, 2016

Actually @user is transformed to [~user] 

Your best bet is to search such comments directly in SQL

0 votes
MK December 15, 2016

maybe this post can help you:
https://answers.atlassian.com/questions/81845

or vote here for a feature request:
https://jira.atlassian.com/browse/JRA-27594 

as my above mentioned, search in the db if you can
table: jiraaction
filter: actionbody like '[~%]' 

Alex Suslin
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.
December 16, 2016

like '%[~' + <username> + ']%' - I guess that is correct, agree?

Suggest an answer

Log in or Sign up to answer