Browse Source

expose PR counter on Repo API (#9202)

for-closed-social
6543 4 years ago
committed by Lunny Xiao
parent
commit
d7c1310353
3 changed files with 7 additions and 0 deletions
  1. +1
    -0
      models/repo.go
  2. +1
    -0
      modules/structs/repo.go
  3. +5
    -0
      templates/swagger/v1_json.tmpl

+ 1
- 0
models/repo.go View File

@ -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(),

+ 1
- 0
modules/structs/repo.go View File

@ -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

+ 5
- 0
templates/swagger/v1_json.tmpl View File

@ -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"

Loading…
Cancel
Save