summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMax Wittig <max.wittig95@gmail.com>2019-07-01 18:41:58 +0200
committerGitHub <noreply@github.com>2019-07-01 18:41:58 +0200
commitad1c0dda37f573673beaf9f25187f51751a5a484 (patch)
tree95a823cfc4e31eb99ec5a6449da9878284343f75 /docs
parentf539c36dddf8e0eb3b2156a3ed4e2ff2fa667cf1 (diff)
parent90a363154067bcf763043124d172eaf705c8fe90 (diff)
downloadgitlab-ad1c0dda37f573673beaf9f25187f51751a5a484.tar.gz
Merge pull request #803 from python-gitlab/feat/related_mr
feat: add support for issue.related_merge_requests
Diffstat (limited to 'docs')
-rw-r--r--docs/gl_objects/issues.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/gl_objects/issues.rst b/docs/gl_objects/issues.rst
index 12df90b..6823da0 100644
--- a/docs/gl_objects/issues.rst
+++ b/docs/gl_objects/issues.rst
@@ -180,6 +180,10 @@ Get the list of merge requests that will close an issue when merged::
mrs = issue.closed_by()
+Get the merge requests related to an issue::
+
+ mrs = issue.related_merge_requests()
+
Get the list of participants::
users = issue.participants()