diff --git a/docs/jira.rst b/docs/jira.rst index 781b9a904..3db627d17 100644 --- a/docs/jira.rst +++ b/docs/jira.rst @@ -268,15 +268,27 @@ Manage issues jira.issue_archive(issue_id_or_key) # Restore an issue - issue_restore(issue_id_or_key) + jira.issue_restore(issue_id_or_key) # Issue Comments jira.issue_get_comments(issue_id_or_key) + # Get issue comment by id jira.issue_get_comment(issue_id_or_key, comment_id) + # Get comments over all issues by ids jira.issues_get_comments_by_id(comment_id, [comment_id...]) + # Get change history for an issue + jira.get_issue_changelog(issue_key) + + # Get worklog for an issue + jira.issue_get_worklog(issue_key) + + # Create a new worklog entry for an issue + # started is a date string in the format %Y-%m-%dT%H:%M:%S.000+0000%z + jira.issue_worklog(issue_key, started, time_in_sec) + Epic Issues -------------