diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-20 14:34:42 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-20 14:34:42 +0000 |
commit | 9f46488805e86b1bc341ea1620b866016c2ce5ed (patch) | |
tree | f9748c7e287041e37d6da49e0a29c9511dc34768 /doc/api/labels.md | |
parent | dfc92d081ea0332d69c8aca2f0e745cb48ae5e6d (diff) | |
download | gitlab-ce-9f46488805e86b1bc341ea1620b866016c2ce5ed.tar.gz |
Add latest changes from gitlab-org/gitlab@13-0-stable-ee
Diffstat (limited to 'doc/api/labels.md')
-rw-r--r-- | doc/api/labels.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/api/labels.md b/doc/api/labels.md index e3f367daaca..3ced7da8ed5 100644 --- a/doc/api/labels.md +++ b/doc/api/labels.md @@ -7,6 +7,8 @@ The `description_html` - was added to response JSON in [GitLab 12.7](https://git Get all labels for a given project. +By default, this request returns 20 results at a time because the API results [are paginated](README.md#pagination). + ```plaintext GET /projects/:id/labels ``` @@ -109,7 +111,7 @@ GET /projects/:id/labels/:label_id | Attribute | Type | Required | Description | | --------- | ------- | -------- | --------------------- | | `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user | -| `label_id` | integer or string | yes | The ID or title of a group's label. | +| `label_id` | integer or string | yes | The ID or title of a project's label. | | `include_ancestor_groups` | boolean | no | Include ancestor groups. Defaults to `true`. | ```shell |