diff options
author | 6543 <6543@obermui.de> | 2020-09-05 09:43:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-05 08:43:06 +0100 |
commit | dba5d82f86dc9dc757404f03bf80ebbe28a5a0b1 (patch) | |
tree | b59de4d8745ff000d3e4fc9c581ede5abaae6bdf /templates/swagger | |
parent | bab1204db4c6f0b3346a84b3c37fd6386fcee48d (diff) | |
download | gitea-dba5d82f86dc9dc757404f03bf80ebbe28a5a0b1.tar.gz gitea-dba5d82f86dc9dc757404f03bf80ebbe28a5a0b1.zip |
Expose Attachemnt Settings by API (#12514)
close #12368
Diffstat (limited to 'templates/swagger')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 86dd817ede..3c563aa673 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -8672,6 +8672,23 @@ } } }, + "/settings/Attachment": { + "get": { + "produces": [ + "application/json" + ], + "tags": [ + "settings" + ], + "summary": "Get instance's global settings for Attachment", + "operationId": "getGeneralAttachmentSettings", + "responses": { + "200": { + "$ref": "#/responses/GeneralAttachmentSettings" + } + } + } + }, "/settings/api": { "get": { "produces": [ @@ -13021,6 +13038,31 @@ }, "x-go-package": "code.gitea.io/gitea/modules/structs" }, + "GeneralAttachmentSettings": { + "description": "GeneralAttachmentSettings contains global Attachment settings exposed by API", + "type": "object", + "properties": { + "allowed_types": { + "type": "string", + "x-go-name": "AllowedTypes" + }, + "enabled": { + "type": "boolean", + "x-go-name": "Enabled" + }, + "max_files": { + "type": "integer", + "format": "int64", + "x-go-name": "MaxFiles" + }, + "max_size": { + "type": "integer", + "format": "int64", + "x-go-name": "MaxSize" + } + }, + "x-go-package": "code.gitea.io/gitea/modules/structs" + }, "GeneralRepoSettings": { "description": "GeneralRepoSettings contains global repository settings exposed by API", "type": "object", @@ -15247,6 +15289,12 @@ "$ref": "#/definitions/GeneralAPISettings" } }, + "GeneralAttachmentSettings": { + "description": "GeneralAttachmentSettings", + "schema": { + "$ref": "#/definitions/GeneralAttachmentSettings" + } + }, "GeneralRepoSettings": { "description": "GeneralRepoSettings", "schema": { |