diff options
Diffstat (limited to 'doc/api/issues.md')
-rw-r--r-- | doc/api/issues.md | 53 |
1 files changed, 46 insertions, 7 deletions
diff --git a/doc/api/issues.md b/doc/api/issues.md index 812a58a99b0..b29626525da 100644 --- a/doc/api/issues.md +++ b/doc/api/issues.md @@ -149,7 +149,14 @@ Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) the `weight` parameter: ```json +[ + { + "state" : "opened", + "description" : "Ratione dolores corrupti mollitia soluta quia.", "weight": null, + ... + } +] ``` **Note**: `assignee` column is deprecated, now we show it as a single-sized array `assignees` to conform to the GitLab EE API. @@ -291,7 +298,14 @@ Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) the `weight` parameter: ```json +[ + { + "project_id" : 4, + "description" : "Omnis vero earum sunt corporis dolor et placeat.", "weight": null, + ... + } +] ``` **Note**: `assignee` column is deprecated, now we show it as a single-sized array `assignees` to conform to the GitLab EE API. @@ -441,7 +455,14 @@ Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) the `weight` parameter: ```json +[ + { + "project_id" : 4, + "description" : "Omnis vero earum sunt corporis dolor et placeat.", "weight": null, + ... + } +] ``` **Note**: `assignee` column is deprecated, now we show it as a single-sized array `assignees` to conform to the GitLab EE API. @@ -548,7 +569,12 @@ Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) the `weight` parameter: ```json +{ + "project_id" : 4, + "description" : "Omnis vero earum sunt corporis dolor et placeat.", "weight": null, + ... +} ``` **Note**: `assignee` column is deprecated, now we show it as a single-sized array `assignees` to conform to the GitLab EE API. @@ -643,7 +669,12 @@ Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) the `weight` parameter: ```json +{ + "project_id" : 4, + "description" : null, "weight": null, + ... +} ``` **Note**: `assignee` column is deprecated, now we show it as a single-sized array `assignees` to conform to the GitLab EE API. @@ -746,7 +777,12 @@ Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) the `weight` parameter: ```json +{ + "project_id" : 4, + "description" : null, "weight": null, + ... +} ``` **Note**: `assignee` column is deprecated, now we show it as a single-sized array `assignees` to conform to the GitLab EE API. @@ -863,7 +899,12 @@ Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) the `weight` parameter: ```json +{ + "project_id": 5, + "description": "Repellat voluptas quibusdam voluptatem exercitationem.", "weight": null, + ... +} ``` **Note**: `assignee` column is deprecated, now we show it as a single-sized array `assignees` to conform to the GitLab EE API. @@ -959,7 +1000,12 @@ Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) the `weight` parameter: ```json +{ + "project_id": 5, + "description": "Repellat voluptas quibusdam voluptatem exercitationem.", "weight": null, + ... +} ``` **Note**: `assignee` column is deprecated, now we show it as a single-sized array `assignees` to conform to the GitLab EE API. @@ -1139,13 +1185,6 @@ Example response: } ``` -Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) will also see -the `weight` parameter: - -```json - "weight": null, -``` - **Note**: `assignee` column is deprecated, now we show it as a single-sized array `assignees` to conform to the GitLab EE API. **Note**: The `closed_by` attribute was [introduced in GitLab 10.6][ce-17042]. This value will only be present for issues which were closed after GitLab 10.6 and when the user account that closed the issue still exists. |