Permissions based on workflow status
We have seen how to restrict editing on an issue based on the workflow status. JIRA gives us an even bigger set of options to restrict many of these operations (such as edit, comment, and so on) on the issue or its subtasks, depending on the issue status.
Let us see this in detail.
How to do it...
This is done in a similar way to making an issue editable/non-editable. Here, also, we add a property on the concerned workflow step. The following are the steps:
Log in as a JIRA Administrator
Navigate to Administration | Global Settings | Workflows.
Create a draft of the workflow, if it is active. Navigate to the step which needs to be modified.
Click on the View step's properties link.
Enter the permission property into the Property Key field. The property is of the form –
jira.permission.[subtasks.]{permission}.{type}[.suffix]
where:subtasks
– This is optional. If included, the permission is applied on the issue's subtasks. If not, the permission is applied on the...