diff options
author | kolaente <konrad@kola-entertainments.de> | 2019-01-24 19:13:30 +0100 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-01-24 13:13:30 -0500 |
commit | 9a137faaaf02661910fdf9037c995e0a54228ad2 (patch) | |
tree | 9b3174605ae86aa902e2b9865883ca0b11edcd9e /templates/swagger | |
parent | 62da3bee1acfee0a3b6d3f386bcf6326c345ea7f (diff) | |
download | gitea-9a137faaaf02661910fdf9037c995e0a54228ad2.tar.gz gitea-9a137faaaf02661910fdf9037c995e0a54228ad2.zip |
Added docs for the tree api (#5834)
* Added docs for the tree api
* Added missing response definition
* Fixed swagger docs
Diffstat (limited to 'templates/swagger')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index d86d1116ca..c3475abace 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -1701,6 +1701,46 @@ } } }, + "/repos/{owner}/{repo}/git/trees/{sha}": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "repository" + ], + "summary": "Gets the tree of a repository.", + "operationId": "GetTree", + "parameters": [ + { + "type": "string", + "description": "owner of the repo", + "name": "owner", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "name of the repo", + "name": "repo", + "in": "path", + "required": true + }, + { + "type": "string", + "description": "sha of the commit", + "name": "sha", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "$ref": "#/responses/GitTreeResponse" + } + } + } + }, "/repos/{owner}/{repo}/hooks": { "get": { "produces": [ @@ -7127,6 +7167,38 @@ }, "x-go-package": "code.gitea.io/gitea/vendor/code.gitea.io/sdk/gitea" }, + "GitEntry": { + "description": "GitEntry represents a git tree", + "type": "object", + "properties": { + "mode": { + "type": "string", + "x-go-name": "Mode" + }, + "path": { + "type": "string", + "x-go-name": "Path" + }, + "sha": { + "type": "string", + "x-go-name": "SHA" + }, + "size": { + "type": "integer", + "format": "int64", + "x-go-name": "Size" + }, + "type": { + "type": "string", + "x-go-name": "Type" + }, + "url": { + "type": "string", + "x-go-name": "URL" + } + }, + "x-go-package": "code.gitea.io/gitea/vendor/code.gitea.io/sdk/gitea" + }, "GitObject": { "type": "object", "title": "GitObject represents a Git object.", @@ -7146,6 +7218,32 @@ }, "x-go-package": "code.gitea.io/gitea/vendor/code.gitea.io/sdk/gitea" }, + "GitTreeResponse": { + "description": "GitTreeResponse returns a git tree", + "type": "object", + "properties": { + "sha": { + "type": "string", + "x-go-name": "SHA" + }, + "tree": { + "type": "array", + "items": { + "$ref": "#/definitions/GitEntry" + }, + "x-go-name": "Entries" + }, + "truncated": { + "type": "boolean", + "x-go-name": "Truncated" + }, + "url": { + "type": "string", + "x-go-name": "URL" + } + }, + "x-go-package": "code.gitea.io/gitea/vendor/code.gitea.io/sdk/gitea" + }, "Issue": { "description": "Issue represents an issue in a repository", "type": "object", @@ -8290,6 +8388,12 @@ } } }, + "GitTreeResponse": { + "description": "GitTreeResponse", + "schema": { + "$ref": "#/definitions/GitTreeResponse" + } + }, "Hook": { "description": "Hook", "schema": { |