You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* added two new methods: download_attachments.from_issue and get_attachments_ids_from_issue
---------
Co-authored-by: gkowalc <>
Co-authored-by: Greg <gkowalc>
Returns a list that contains the tree structure of the root issue, with all subtasks and inward linked issues.
1736
+
(!) Function only returns child issues from the same Jira instance or from an instance to which the API key has access.
1737
+
:param issue_key: Jira issue key
1738
+
:param tree: list to store the tree structure for recursion. Do not change it.
1739
+
:param depth: current depth of the tree for recursion. Do not change it.
1740
+
:return: list of dictionaries containing the tree structure. Dictionary element contains a key (parent issue) and value (child issue).
1741
+
"""
1742
+
iftreeisNone:
1743
+
tree= []
1744
+
ifdepthisNone:
1745
+
depth=0
1745
1746
# Check the recursion depth. In case of any bugs that would result in infinite recursion, this will prevent the function from crashing your app. Python default for REcursionError is 1000
0 commit comments