diff options
author | 6543 <24977596+6543@users.noreply.github.com> | 2019-11-29 16:14:24 +0100 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-11-29 23:14:24 +0800 |
commit | d7c13103534639023badb5e1af8e1ecb72b9c594 (patch) | |
tree | c47dea1a1d744f52f278aee6bff46621800d64c4 | |
parent | e151674cfa4255938f974cfb050b5222db77dcf5 (diff) | |
download | gitea-d7c13103534639023badb5e1af8e1ecb72b9c594.tar.gz gitea-d7c13103534639023badb5e1af8e1ecb72b9c594.zip |
expose PR counter on Repo API (#9202)
-rw-r--r-- | models/repo.go | 1 | ||||
-rw-r--r-- | modules/structs/repo.go | 1 | ||||
-rw-r--r-- | templates/swagger/v1_json.tmpl | 5 |
3 files changed, 7 insertions, 0 deletions
diff --git a/models/repo.go b/models/repo.go index 6c293da6f8..cbe1ccc4f6 100644 --- a/models/repo.go +++ b/models/repo.go @@ -368,6 +368,7 @@ func (repo *Repository) innerAPIFormat(e Engine, mode AccessMode, isParent bool) Forks: repo.NumForks, Watchers: repo.NumWatches, OpenIssues: repo.NumOpenIssues, + OpenPulls: repo.NumOpenPulls, DefaultBranch: repo.DefaultBranch, Created: repo.CreatedUnix.AsTime(), Updated: repo.UpdatedUnix.AsTime(), diff --git a/modules/structs/repo.go b/modules/structs/repo.go index ebfb0a0586..283eddb059 100644 --- a/modules/structs/repo.go +++ b/modules/structs/repo.go @@ -67,6 +67,7 @@ type Repository struct { Forks int `json:"forks_count"` Watchers int `json:"watchers_count"` OpenIssues int `json:"open_issues_count"` + OpenPulls int `json:"open_pr_counter"` DefaultBranch string `json:"default_branch"` Archived bool `json:"archived"` // swagger:strfmt date-time diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 338ab104e9..9c5db48080 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -10329,6 +10329,11 @@ "format": "int64", "x-go-name": "OpenIssues" }, + "open_pr_counter": { + "type": "integer", + "format": "int64", + "x-go-name": "OpenPulls" + }, "original_url": { "type": "string", "x-go-name": "OriginalURL" |