diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-24 10:12:46 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-24 10:12:46 +0000 |
commit | 85e95876ecf827253256c841df80a53843b84f7f (patch) | |
tree | 7759343984204444409dcfb5ac8b72c493c5d7b5 /spec/fixtures | |
parent | 680a5284470c6e5c430cd077b797504acd1f26d7 (diff) | |
download | gitlab-ce-85e95876ecf827253256c841df80a53843b84f7f.tar.gz |
Add latest changes from gitlab-org/gitlab@12-7-stable-ee
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/error_tracking/update_issue.json | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/spec/fixtures/api/schemas/error_tracking/update_issue.json b/spec/fixtures/api/schemas/error_tracking/update_issue.json index 72514ce647d..75f2c1152d9 100644 --- a/spec/fixtures/api/schemas/error_tracking/update_issue.json +++ b/spec/fixtures/api/schemas/error_tracking/update_issue.json @@ -6,9 +6,15 @@ "properties" : { "result": { "type": "object", + "required" : [ + "status", + "updated", + "closed_issue_iid" + ], "properties": { "status": { "type": "string" }, - "updated": { "type": "boolean" } + "updated": { "type": "boolean" }, + "closed_issue_iid": { "type": ["integer", "null"] } } } }, |