Skip to content

Commit 056d379

Browse files
authored
[Jira] Added issue changelog and worklog method calls to docs (#1122)
* Update jira.rst Added jira.get_issue_changelog method and fixed some missing comments and typos * Update jira.rst Added docu for retrieving and sending issue work log entries * Remove trailing spaces
1 parent dc06d58 commit 056d379

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

docs/jira.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,15 +268,27 @@ Manage issues
268268
jira.issue_archive(issue_id_or_key)
269269
270270
# Restore an issue
271-
issue_restore(issue_id_or_key)
271+
jira.issue_restore(issue_id_or_key)
272272
273273
# Issue Comments
274274
jira.issue_get_comments(issue_id_or_key)
275275
276+
# Get issue comment by id
276277
jira.issue_get_comment(issue_id_or_key, comment_id)
277278
279+
# Get comments over all issues by ids
278280
jira.issues_get_comments_by_id(comment_id, [comment_id...])
279281
282+
# Get change history for an issue
283+
jira.get_issue_changelog(issue_key)
284+
285+
# Get worklog for an issue
286+
jira.issue_get_worklog(issue_key)
287+
288+
# Create a new worklog entry for an issue
289+
# started is a date string in the format %Y-%m-%dT%H:%M:%S.000+0000%z
290+
jira.issue_worklog(issue_key, started, time_in_sec)
291+
280292
281293
Epic Issues
282294
-------------

0 commit comments

Comments
 (0)