diff options
author | Antoine GIRARD <sapk@users.noreply.github.com> | 2017-05-14 11:37:15 +0200 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-05-14 17:37:15 +0800 |
commit | 91417e971553ca0a4862fb42188a816a2ea86277 (patch) | |
tree | f211c9dc36619b00e662560bf4f1bd4d77545bf1 /public/swagger.v1.json | |
parent | e214728725b304e92308f3c30235ec0d12dd5478 (diff) | |
download | gitea-91417e971553ca0a4862fb42188a816a2ea86277.tar.gz gitea-91417e971553ca0a4862fb42188a816a2ea86277.zip |
re-Generate swagger.json (#1722)
changes introduced to repo format by : go-gitea/gitea#1687 go-gitea/go-sdk#58 go-gitea/gitea#1668 go-gitea/go-sdk#56
Diffstat (limited to 'public/swagger.v1.json')
-rw-r--r-- | public/swagger.v1.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/public/swagger.v1.json b/public/swagger.v1.json index d3e1882141..6f8f30fcfe 100644 --- a/public/swagger.v1.json +++ b/public/swagger.v1.json @@ -913,6 +913,10 @@ "type": "string", "x-go-name": "Description" }, + "empty": { + "type": "boolean", + "x-go-name": "Empty" + }, "fork": { "type": "boolean", "x-go-name": "Fork" @@ -952,6 +956,10 @@ "x-go-name": "Owner", "$ref": "#/definitions/User" }, + "parent": { + "x-go-name": "Parent", + "$ref": "#/definitions/Repository" + }, "permissions": { "x-go-name": "Permissions", "$ref": "#/definitions/Permission" @@ -960,6 +968,11 @@ "type": "boolean", "x-go-name": "Private" }, + "size": { + "type": "integer", + "format": "int64", + "x-go-name": "Size" + }, "ssh_url": { "type": "string", "x-go-name": "SSHURL" @@ -1116,6 +1129,9 @@ "description": { "type": "string" }, + "empty": { + "type": "boolean" + }, "fork": { "type": "boolean" }, @@ -1144,10 +1160,15 @@ "format": "int64" }, "owner": {}, + "parent": {}, "permissions": {}, "private": { "type": "boolean" }, + "size": { + "type": "integer", + "format": "int64" + }, "ssh_url": { "type": "string" }, |