diff options
author | a1012112796 <1012112796@qq.com> | 2021-04-11 16:53:23 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-11 09:53:23 +0100 |
commit | 63411309fb010d2b7f739dd21dc3de06cfbfcc86 (patch) | |
tree | 30b5fc6d8dc4de3803b426850658c61689ec12cd /templates | |
parent | 18efe9a0231e7c2f667a153da0793696a0f805d8 (diff) | |
download | gitea-63411309fb010d2b7f739dd21dc3de06cfbfcc86.tar.gz gitea-63411309fb010d2b7f739dd21dc3de06cfbfcc86.zip |
add some reponse status on api docs (#15399)
Signed-off-by: a1012112796 <1012112796@qq.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: 6543 <6543@obermui.de>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 4be2718ef1..b548f25f4f 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -10068,6 +10068,9 @@ "responses": { "201": { "$ref": "#/responses/OAuth2Application" + }, + "400": { + "$ref": "#/responses/error" } } } @@ -10095,6 +10098,9 @@ "responses": { "200": { "$ref": "#/responses/OAuth2Application" + }, + "404": { + "$ref": "#/responses/notFound" } } }, @@ -10120,6 +10126,9 @@ "responses": { "204": { "$ref": "#/responses/empty" + }, + "404": { + "$ref": "#/responses/notFound" } } }, @@ -10153,6 +10162,9 @@ "responses": { "200": { "$ref": "#/responses/OAuth2Application" + }, + "404": { + "$ref": "#/responses/notFound" } } } @@ -11492,6 +11504,9 @@ "responses": { "201": { "$ref": "#/responses/AccessToken" + }, + "400": { + "$ref": "#/responses/error" } } } @@ -11526,6 +11541,9 @@ "204": { "$ref": "#/responses/empty" }, + "404": { + "$ref": "#/responses/notFound" + }, "422": { "$ref": "#/responses/error" } |