diff options
author | Luc Didry <luc@didry.org> | 2018-01-03 17:32:34 +0100 |
---|---|---|
committer | Luc Didry <luc@didry.org> | 2018-01-03 19:36:54 +0100 |
commit | 78cdac8401375cc85be54ae68e5d94d02a90233c (patch) | |
tree | 31d15b47a233c557d7299452ad7e39dd48d9f8b9 /spec/fixtures | |
parent | e5a9b9a14d32d890dea20403c977dfd569eb3e17 (diff) | |
download | gitlab-ce-78cdac8401375cc85be54ae68e5d94d02a90233c.tar.gz |
Expose project_id on /api/v4/pages/domains
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/api/schemas/public_api/v4/pages_domain/basic.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/fixtures/api/schemas/public_api/v4/pages_domain/basic.json b/spec/fixtures/api/schemas/public_api/v4/pages_domain/basic.json index 4ba6422406c..e8c17298b43 100644 --- a/spec/fixtures/api/schemas/public_api/v4/pages_domain/basic.json +++ b/spec/fixtures/api/schemas/public_api/v4/pages_domain/basic.json @@ -3,6 +3,7 @@ "properties": { "domain": { "type": "string" }, "url": { "type": "uri" }, + "project_id": { "type": "integer" }, "certificate_expiration": { "type": "object", "properties": { @@ -13,6 +14,6 @@ "additionalProperties": false } }, - "required": ["domain", "url"], + "required": ["domain", "url", "project_id"], "additionalProperties": false } |