Browse Source

Fixes repo branch endpoint summary (#4893)

in browser saw `/repos/{owner}/{repo}/branches/{branch} List a repository's branches` fixed

Addresses https://github.com/go-gitea/debian-packaging/pull/1

Fixes https://github.com/go-gitea/gitea#4892
tags/v1.6.0-dev
Lewis Cowles 5 years ago
parent
commit
c43399cad8
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      routers/api/v1/repo/branch.go
  2. 1
    1
      templates/swagger/v1_json.tmpl

+ 1
- 1
routers/api/v1/repo/branch.go View File

func GetBranch(ctx *context.APIContext) { func GetBranch(ctx *context.APIContext) {
// swagger:operation GET /repos/{owner}/{repo}/branches/{branch} repository repoGetBranch // swagger:operation GET /repos/{owner}/{repo}/branches/{branch} repository repoGetBranch
// --- // ---
// summary: List a repository's branches
// summary: Retrieve a specific branch from a repository
// produces: // produces:
// - application/json // - application/json
// parameters: // parameters:

+ 1
- 1
templates/swagger/v1_json.tmpl View File

"tags": [ "tags": [
"repository" "repository"
], ],
"summary": "List a repository's branches",
"summary": "Retrieve a specific branch from a repository",
"operationId": "repoGetBranch", "operationId": "repoGetBranch",
"parameters": [ "parameters": [
{ {

Loading…
Cancel
Save