Update issue.go with labels documentation (labels content, not ids) (#35522)

For https://github.com/go-gitea/gitea/issues/35521

---------

Signed-off-by: Fabien Benetou <fabien-services@benetou.fr>
This commit is contained in:
Fabien Benetou
2025-09-25 18:56:49 +02:00
committed by GitHub
parent d83676c97a
commit 53dfbbb2ee
2 changed files with 2 additions and 2 deletions

View File

@@ -351,7 +351,7 @@ func ListIssues(ctx *context.APIContext) {
// enum: [closed, open, all]
// - name: labels
// in: query
// description: comma separated list of labels. Fetch only issues that have any of this labels. Non existent labels are discarded
// description: comma separated list of label names. Fetch only issues that have any of this label names. Non existent labels are discarded.
// type: string
// - name: q
// in: query

View File

@@ -9109,7 +9109,7 @@
},
{
"type": "string",
"description": "comma separated list of labels. Fetch only issues that have any of this labels. Non existent labels are discarded",
"description": "comma separated list of label names. Fetch only issues that have any of this label names. Non existent labels are discarded.",
"name": "labels",
"in": "query"
},