Skip to content

Commit

Permalink
Update JIRA docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jerubball authored Dec 7, 2023
1 parent d493e21 commit 91d8726
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/jira.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Manage issues
# Update issue field
fields = {'summary': 'New summary'}
jira.update_issue_field(key, fields)
jira.update_issue_field(key, fields, notify_users=True)
# Get existing custom fields or find by filter
jira.get_custom_fields(self, search=None, start=1, limit=50):
Expand Down Expand Up @@ -316,6 +316,9 @@ Manage issues
# Add Comments
jira.issue_add_comment(issue_id_or_key, "This is a sample comment string.")
# Edit Comments
jira.issue_edit_comment(issue_key, comment_id, comment, visibility=None, notify_users=True)
# Issue Comments
jira.issue_get_comments(issue_id_or_key)
Expand Down

0 comments on commit 91d8726

Please sign in to comment.