diff options
author | jeremiepozzigithub <125282390+jeremiepozzigithub@users.noreply.github.com> | 2023-07-20 10:35:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-20 16:35:47 +0800 |
commit | d7a8d09da013f14bf795fa8efc3a0eac7f259d02 (patch) | |
tree | 355df9bdcb45c343624a14ea60314a65f1473278 /templates | |
parent | df55f9b189174767296e562389948e5250f1df73 (diff) | |
download | gitea-d7a8d09da013f14bf795fa8efc3a0eac7f259d02.tar.gz gitea-d7a8d09da013f14bf795fa8efc3a0eac7f259d02.zip |
Add file status for API "Get a single commit from a repository" (#16205) (#25831)
#16205 To obtain a closer behavior to the api from github, the status
(added, modified, removed) of a file should be available in addition to
the filename.
See github doc :
https://docs.github.com/fr/rest/commits/commits?apiVersion=2022-11-28#get-a-commit
Diffstat (limited to 'templates')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index b7620b9e76..42eda98528 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -16399,6 +16399,10 @@ "filename": { "type": "string", "x-go-name": "Filename" + }, + "status": { + "type": "string", + "x-go-name": "Status" } }, "x-go-package": "code.gitea.io/gitea/modules/structs" |