aboutsummaryrefslogtreecommitdiffstats
path: root/modules/structs
diff options
context:
space:
mode:
authorjeremiepozzigithub <125282390+jeremiepozzigithub@users.noreply.github.com>2023-07-20 10:35:47 +0200
committerGitHub <noreply@github.com>2023-07-20 16:35:47 +0800
commitd7a8d09da013f14bf795fa8efc3a0eac7f259d02 (patch)
tree355df9bdcb45c343624a14ea60314a65f1473278 /modules/structs
parentdf55f9b189174767296e562389948e5250f1df73 (diff)
downloadgitea-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 'modules/structs')
-rw-r--r--modules/structs/repo_commit.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/structs/repo_commit.go b/modules/structs/repo_commit.go
index b3e98df195..fec7d97608 100644
--- a/modules/structs/repo_commit.go
+++ b/modules/structs/repo_commit.go
@@ -69,4 +69,5 @@ type CommitDateOptions struct {
// CommitAffectedFiles store information about files affected by the commit
type CommitAffectedFiles struct {
Filename string `json:"filename"`
+ Status string `json:"status"`
}