diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-21 09:08:43 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-21 09:08:43 +0000 |
commit | afe057a8ff8546f0032e439a9a200307fb6de86a (patch) | |
tree | 0f6699ac8a4863344f4f4db6500d33ce509e44c5 /spec/fixtures | |
parent | ab0dd39a49e43f6beed9bdb6414a0f04bcf671b4 (diff) | |
download | gitlab-ce-afe057a8ff8546f0032e439a9a200307fb6de86a.tar.gz |
Add latest changes from gitlab-org/gitlab@master
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"] } } } }, |