diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 14:09:21 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 14:09:21 +0200 |
commit | e901f440d787c1fd43fdba1838a1f37066329ccf (patch) | |
tree | f37c6565a8676d38941b2385619db9a2f403fe24 /docs | |
parent | 4ec8975982290f3950d629f0fd7c73f351ead84f (diff) | |
download | gitlab-e901f440d787c1fd43fdba1838a1f37066329ccf.tar.gz |
Issues: add missing attributes and methods
Diffstat (limited to 'docs')
-rw-r--r-- | docs/gl_objects/issues.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/gl_objects/issues.rst b/docs/gl_objects/issues.rst index 2f58dd6..027d5bc 100644 --- a/docs/gl_objects/issues.rst +++ b/docs/gl_objects/issues.rst @@ -145,3 +145,11 @@ Reset spent time for an issue:: Get user agent detail for the issue (admin only):: detail = issue.user_agent_detail() + +Get the list of merge requests that will close an issue when merged:: + + mrs = issue.closed_by() + +Get the list of participants:: + + users = issue.participants() |