From 954fe0e4e0ab61516f200a171cf9a3bfb49c8906 Mon Sep 17 00:00:00 2001 From: Antoine GIRARD Date: Mon, 26 Aug 2019 20:13:10 +0200 Subject: swagger/fix: []string are not enum by swagger definition (#7916) * []string are not enum by swagger definition * apply suggestion of @guillep2k * re-generate swagger file --- templates/swagger/v1_json.tmpl | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'templates/swagger') diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index de670156de..2e4af809e8 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -7742,7 +7742,11 @@ }, "units": { "type": "array", - "enum": [ + "items": { + "type": "string" + }, + "x-go-name": "Units", + "example": [ "repo.code", "repo.issues", "repo.ext_issues", @@ -7750,11 +7754,7 @@ "repo.pulls", "repo.releases", "repo.ext_wiki" - ], - "items": { - "type": "string" - }, - "x-go-name": "Units" + ] } }, "x-go-package": "code.gitea.io/gitea/modules/structs" @@ -8276,7 +8276,11 @@ }, "units": { "type": "array", - "enum": [ + "items": { + "type": "string" + }, + "x-go-name": "Units", + "example": [ "repo.code", "repo.issues", "repo.ext_issues", @@ -8284,11 +8288,7 @@ "repo.pulls", "repo.releases", "repo.ext_wiki" - ], - "items": { - "type": "string" - }, - "x-go-name": "Units" + ] } }, "x-go-package": "code.gitea.io/gitea/modules/structs" @@ -9827,7 +9827,11 @@ }, "units": { "type": "array", - "enum": [ + "items": { + "type": "string" + }, + "x-go-name": "Units", + "example": [ "repo.code", "repo.issues", "repo.ext_issues", @@ -9835,11 +9839,7 @@ "repo.pulls", "repo.releases", "repo.ext_wiki" - ], - "items": { - "type": "string" - }, - "x-go-name": "Units" + ] } }, "x-go-package": "code.gitea.io/gitea/modules/structs" -- cgit v1.2.3