Browse Source

Add release_counter to Repo API (#9214)

tags/v1.11.0-rc1
6543 4 years ago
parent
commit
7c6f2e27be
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)
Watchers: repo.NumWatches,
OpenIssues: repo.NumOpenIssues,
OpenPulls: repo.NumOpenPulls,
Releases: repo.NumReleases,
DefaultBranch: repo.DefaultBranch,
Created: repo.CreatedUnix.AsTime(),
Updated: repo.UpdatedUnix.AsTime(),

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

@@ -68,6 +68,7 @@ type Repository struct {
Watchers int `json:"watchers_count"`
OpenIssues int `json:"open_issues_count"`
OpenPulls int `json:"open_pr_counter"`
Releases int `json:"release_counter"`
DefaultBranch string `json:"default_branch"`
Archived bool `json:"archived"`
// swagger:strfmt date-time

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

@@ -10351,6 +10351,11 @@
"type": "boolean",
"x-go-name": "Private"
},
"release_counter": {
"type": "integer",
"format": "int64",
"x-go-name": "Releases"
},
"size": {
"type": "integer",
"format": "int64",

Loading…
Cancel
Save