summary refs log tree commit diff
path: root/api/assets
diff options
context:
space:
mode:
authorErkin Alp Güney <erkinalp9035@gmail.com>2022-07-09 08:11:47 +0300
committerGitHub <noreply@github.com>2022-07-09 08:11:47 +0300
commitf2d692663ad5ac2e1c7a39395a67a6e5cdd85c6c (patch)
treeb7225df655d7da2833bb651dbc7697ccc286bfa7 /api/assets
parentFilter out schemas that block generation instead, and also include util in files (diff)
parentRemoved unused import (diff)
downloadserver-f2d692663ad5ac2e1c7a39395a67a6e5cdd85c6c.tar.xz
Merge pull request #783 from MaddyUnderStars/feat/multiUploads
Allow multiple attachments per message
Diffstat (limited to 'api/assets')
-rw-r--r--api/assets/schemas.json6
1 files changed, 6 insertions, 0 deletions
diff --git a/api/assets/schemas.json b/api/assets/schemas.json

index a930938f..2102292b 100644 --- a/api/assets/schemas.json +++ b/api/assets/schemas.json
@@ -2,12 +2,18 @@ "MessageCreateSchema": { "type": "object", "properties": { + "type": { + "type": "integer" + }, "content": { "type": "string" }, "nonce": { "type": "string" }, + "channel_id": { + "type": "string" + }, "tts": { "type": "boolean" },