summaryrefslogtreecommitdiff
path: root/spec/fixtures/api
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-24 10:12:46 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-24 10:12:46 +0000
commit85e95876ecf827253256c841df80a53843b84f7f (patch)
tree7759343984204444409dcfb5ac8b72c493c5d7b5 /spec/fixtures/api
parent680a5284470c6e5c430cd077b797504acd1f26d7 (diff)
downloadgitlab-ce-85e95876ecf827253256c841df80a53843b84f7f.tar.gz
Add latest changes from gitlab-org/gitlab@12-7-stable-ee
Diffstat (limited to 'spec/fixtures/api')
-rw-r--r--spec/fixtures/api/schemas/error_tracking/update_issue.json8
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"] }
}
}
},