The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

remove group with restricted comments

Joy_Mather
Contributor
May 24, 2015

I am reducing the number of groups we have in Jira. One group I wish to remove has restricted comments assigned.  How can I view what the comments might be, in order to make decisions on what to do about them?

Using JIRA ver 6.3.14

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Matheus Fernandes
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 25, 2015

Try running the following SQL in JIRA's database:

SELECT * FROM jiraaction WHERE actionlevel = '<group-name>';

This should return all comments with the restriction level set to that group. Just change <group-name> with the actual name of the group. smile