diff options
author | Sean McGivern <sean@gitlab.com> | 2018-11-21 11:09:02 +0000 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2018-11-21 11:09:02 +0000 |
commit | eb3683fa65a6c943ae79352c90bd1ad3e810ef01 (patch) | |
tree | c04091cc5071fdaf4d5433639f95b49a862758b9 /doc | |
parent | e0826959ead862de5ce761b4109b84e92a6d2f53 (diff) | |
parent | c216b25dfeccfd20de56ea2f0eb467a00f5e4933 (diff) | |
download | gitlab-ce-eb3683fa65a6c943ae79352c90bd1ad3e810ef01.tar.gz |
Merge branch '52453-show-subgroups-in-group-create-issue' into 'master'
Resolve "Access project from descendent groups when selecting project to create new issue"
Closes #47096 and #52453
See merge request gitlab-org/gitlab-ce!22612
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/groups.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/api/groups.md b/doc/api/groups.md index a9462fc413f..59444a98086 100644 --- a/doc/api/groups.md +++ b/doc/api/groups.md @@ -152,8 +152,10 @@ Parameters: | `simple` | boolean | no | Return only the ID, URL, name, and path of each project | | `owned` | boolean | no | Limit by projects owned by the current user | | `starred` | boolean | no | Limit by projects starred by the current user | -| `with_issues_enabled` | boolean | no | Limit by enabled issues feature | -| `with_merge_requests_enabled` | boolean | no | Limit by enabled merge requests feature | +| `with_issues_enabled` | boolean | no | Limit by projects with issues feature enabled. Default is `false` | +| `with_merge_requests_enabled` | boolean | no | Limit by projects with merge requests feature enabled. Default is `false` | +| `with_shared` | boolean | no | Include projects shared to this group. Default is `true` | +| `include_subgroups` | boolean | no | Include projects in subgroups of this group. Default is `false` | | `with_custom_attributes` | boolean | no | Include [custom attributes](custom_attributes.md) in response (admins only) | Example response: |