Skip to content

Commit 54abe92

Browse files
committed
update docstrings
1 parent 10cafc5 commit 54abe92

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

docs/jira.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,13 @@ Manage issues
436436
# :return: list of dictionaries containing the tree structure. Dictionary element contains a key (parent issue) and value (child issue).
437437
jira.get_issue_tree_recursive(issue_key, tree=[], depth=0)
438438
439+
# Returns full information about visible fields that can be autocompleted in JQL.
440+
jira.get_autocomplete_data()
441+
442+
# Returns auto complete suggestions for JQL search.
443+
field_name = "Custom Field"
444+
jira.get_autocomplete_suggestion(field_name, field_value=None, predicate_name=None, predicate_value=None)
445+
439446
Epic Issues
440447
-------------
441448

@@ -467,13 +474,6 @@ Epic Issues
467474
# By default, the returned issues are ordered by rank.
468475
jira.get_issues_for_epic(board_id, epic_id, jql="", validate_query="", fields="*all", expand="", start=0, limit=50, )
469476
470-
# Returns full information about visible fields that can be autocompleted in JQL.
471-
jira.get_autocomplete_data()
472-
473-
# Returns auto complete suggestions for JQL search.
474-
field_name = "Custom Field"
475-
jira.get_autocomplete_suggestion(field_name, field_value=None, predicate_name=None, predicate_value=None)
476-
477477
Manage Boards
478478
-------------
479479

0 commit comments

Comments
 (0)