Hi,
Our idea is to create a project in Jira that will contain Epics, which would be visible in other Software Boards. Epic on this board have an additional Custom Field called Epic Teams.
On the Team 1 board, I extended the query filter to show epics from this "master project" as follows:
project = TDS1 OR "Epic Teams [Checkboxes]" = "Team 1" ORDER BY Rank ASC.
After this change, roles that had permission to "Manage Sprint" lost the ability to press the Create / Complete Sprint button. It says that only Jira Administrator can do it.
Is there any possibility that the user who is the Administrator / Project Leader in the project (and is not Jira Administrator) still has this option in the board on which we want to see epics from the different project?
The error is caused by this part of your JQL:
"Epic Teams [Checkboxes]" = "Team 1"
Because the master project is not defined in the query, Jira is assuming the issues could come from any project, so requires a user who is managing sprints to have the permission in all projects.
But even if you refine it, users will still need the "Manage Sprints" permission in the master project, so the permission is active for all possible projects in the query.
What you'll need to do is:
As an example, your JQL might become:
project = TDS1 OR project = MASTER AND "Epic Teams [Checkboxes]" = "Team 1" ORDER BY Rank ASC
Ste
Awesome answer and explanation. Thank you so much. Everything is working now!
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.