Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Exercise

Level

Code

Edit one Issue

BEGINNER

issue.set("field", "value")

Edit an Issue’s parent issue

BEGINNER

parent = Issue(issue.parent.key)
parent.set("field", "value")

Edit all issues linked to the trigger issue

BEGINNER

linked_issues = issue.linked_issues
for l_issue in linked_issues:
    _issue = Issue(l_issue["key"])
    _issue.set("field", "value")

soon

soon

soon

  • No labels