diff options
author | Laurent Peuch <cortex@worlddomination.be> | 2021-08-04 06:12:22 +0200 |
---|---|---|
committer | Laurent Peuch <cortex@worlddomination.be> | 2021-08-04 06:12:22 +0200 |
commit | 5b5a7bcc70a4ddd621cbd59e134e7004ad2d9ab9 (patch) | |
tree | 98f1b4121e242ae02c4ae7290000d847d66e84b8 /docs | |
parent | 47826789a5f885a87ae139b8c4d8da9d2dacf713 (diff) | |
download | gitlab-5b5a7bcc70a4ddd621cbd59e134e7004ad2d9ab9.tar.gz |
docs(mergequests): gl.mergequests.list documentation was missleading
Diffstat (limited to 'docs')
-rw-r--r-- | docs/gl_objects/mrs.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/gl_objects/mrs.rst b/docs/gl_objects/mrs.rst index 47c626b..f17ad26 100644 --- a/docs/gl_objects/mrs.rst +++ b/docs/gl_objects/mrs.rst @@ -30,10 +30,14 @@ Reference Examples -------- -List the merge requests available on the GitLab server:: +List the merge requests created by the user of the token on the GitLab server:: mrs = gl.mergerequests.list() +List the merge requests available on the GitLab server:: + + mrs = gl.mergerequests.list(scope="all") + List the merge requests for a group:: group = gl.groups.get('mygroup') |