diff options
author | 6543 <6543@obermui.de> | 2020-02-09 15:33:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-09 14:33:03 +0000 |
commit | e273817154e98b7b675e43e97cd17f48a603cf9e (patch) | |
tree | 9f350c301a87d3dd57b4bdad954cf1c44185cb1a /templates/swagger/v1_json.tmpl | |
parent | 74a4a1e17f99d147db9329718a5ecc87984b0ecd (diff) | |
download | gitea-e273817154e98b7b675e43e97cd17f48a603cf9e.tar.gz gitea-e273817154e98b7b675e43e97cd17f48a603cf9e.zip |
[API] Fix inconsistent label color format (#10129)
* update and use labelColorPattern
* add TestCases
* fix lint
* # optional for templates
* fix typo
* some more
* fix lint of **master**
Diffstat (limited to 'templates/swagger/v1_json.tmpl')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 35c700a765..ad2d2cca95 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -5317,6 +5317,9 @@ "responses": { "201": { "$ref": "#/responses/Label" + }, + "422": { + "$ref": "#/responses/validationError" } } } @@ -5443,6 +5446,9 @@ "responses": { "200": { "$ref": "#/responses/Label" + }, + "422": { + "$ref": "#/responses/validationError" } } } |