diff options
author | zeripath <art27@cantab.net> | 2020-06-05 12:03:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-05 14:03:12 +0300 |
commit | f761a37a0f024ea54c4eee9cbae22377616e84e0 (patch) | |
tree | e19dd19da32507b2391b267ce001fceea12ea9ce /templates | |
parent | 17f8de7a54dd2d04daf0b57f40e1724c0b1ffa65 (diff) | |
download | gitea-f761a37a0f024ea54c4eee9cbae22377616e84e0.tar.gz gitea-f761a37a0f024ea54c4eee9cbae22377616e84e0.zip |
Provide diff and patch API endpoints (#11751)
* Provide diff and patch API endpoints
The diff and patch endpoints on the main routes are not accessible by token
therefore we provide new API based endpoints for these
Fix #10923
Signed-off-by: Andrew Thornton <art27@cantab.net>
* placate swagger
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Make the response an actual string
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 687a6bc5e4..d90fafd75f 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -6649,6 +6649,94 @@ } } }, + "/repos/{owner}/{repo}/pulls/{index}.diff": { + "get": { + "produces": [ + "text/plain" + ], + "tags": [ + "repository" + ], + "summary": "Get a pull request diff", + "operationId": "repoDownloadPullDiff", + "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": "integer", + "format": "int64", + "description": "index of the pull request to get", + "name": "index", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "$ref": "#/responses/string" + }, + "404": { + "$ref": "#/responses/notFound" + } + } + } + }, + "/repos/{owner}/{repo}/pulls/{index}.patch": { + "get": { + "produces": [ + "text/plain" + ], + "tags": [ + "repository" + ], + "summary": "Get a pull request patch file", + "operationId": "repoDownloadPullPatch", + "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": "integer", + "format": "int64", + "description": "index of the pull request to get", + "name": "index", + "in": "path", + "required": true + } + ], + "responses": { + "200": { + "$ref": "#/responses/string" + }, + "404": { + "$ref": "#/responses/notFound" + } + } + } + }, "/repos/{owner}/{repo}/pulls/{index}/merge": { "get": { "produces": [ @@ -15209,6 +15297,12 @@ "redirect": { "description": "APIRedirect is a redirect response" }, + "string": { + "description": "APIString is a string response", + "schema": { + "type": "string" + } + }, "validationError": { "description": "APIValidationError is error format response related to input validation", "headers": { |