Signature
| Helper | nodeHelper |
| Signature | isIssueEditable(Issue issue) |
| Description |
Returns true if the issue can be modified. |
| Introduced in | 1.1.0 |
Example use
// don't do anything if the issue is marked as non editable
if (! nodeHelper.isIssueEditable(issue)) {
return
}Comments
- There are various reasons why an issue is marked as not editable. Typically, one doesn't want to change a closed issue.
The workflow properties allow you to change this edit permission.