Browse Source

Document possibility to limit API Repo search to topics only. (#7957)

Signed-off-by: David Svantesson <davidsvantesson@gmail.com>
tags/v1.10.0-rc1
David Svantesson 6 years ago committed by techknowlogick
parent
commit
26af3401c3
  1. 4
      routers/api/v1/repo/repo.go
  2. 6
      templates/swagger/v1_json.tmpl

4
routers/api/v1/repo/repo.go

@ -51,6 +51,10 @@ func Search(ctx *context.APIContext) {
// in: query
// description: keyword
// type: string
// - name: topic
// in: query
// description: Limit search to repositories with keyword as topic
// type: boolean
// - name: uid
// in: query
// description: search only for repos that the user with the given id owns or contributes to

6
templates/swagger/v1_json.tmpl

@ -1094,6 +1094,12 @@
"in": "query"
},
{
"type": "boolean",
"description": "Limit search to repositories with keyword as topic",
"name": "topic",
"in": "query"
},
{
"type": "integer",
"format": "int64",
"description": "search only for repos that the user with the given id owns or contributes to",

Loading…
Cancel
Save