Forums

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

Jira Cloud: Create user who only has Read Only Access for Jira Filters (nothing else)

Nick Angelos
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 29, 2019

Hi - I'm trying to create a user who can only see Filters that I want to assign to them.  They shouldn't be able to see the other issues in our projects.  They shouldn't be able to edit anything, just should be able to view the Filters assigned to them.

Appreciate the help.

1 answer

0 votes
Alexey Matveev
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.
January 29, 2019

Hello,

Filter does not restrict permissions of a user. You would need to restrict user permission in the project permission scheme and if it is not enough, you could use security levels.

Nick Angelos
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 29, 2019

It looks like security levels are only applied at the project level though?  Thus making it so a user can see all issues in a specific project.  I want them to only see issues that have a certain label assigned to them...

Alexey Matveev
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.
January 29, 2019

Security levels are applied at a project level. 

If you want a user to see only issues with certain labels. Then you would need to create a group and add a user, who must see issues with certain labels. Then create a group picker field. If a label is set and a certain group must see it, then you should add this group to this field. In the project permission scheme grant this group picker field the Browse Projects permission.

You can set a group to the group picker field by a scripting add-on:

For example, you could do it with the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could create a listener for the Update Issue event with a code like this:

If ("your label" in labels) {

   #{your group picker field name}  = "your group";

}

Suggest an answer

Log in or Sign up to answer