summary refs log tree commit diff
path: root/src/schema
diff options
context:
space:
mode:
authorIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-02-21 13:44:58 +0100
committerIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-02-21 13:44:58 +0100
commit5d1c5f40d244105f1b3da0a57e9ee08d76ff22a1 (patch)
treee39a1b40e4ae8a759bfc29609e850f4b2c7a08b8 /src/schema
parentMerge branch 'master' of https://github.com/discord-open-source/discord-api (diff)
downloadserver-5d1c5f40d244105f1b3da0a57e9ee08d76ff22a1.tar.xz
Created Ban Routes
Ban members works now
Diffstat (limited to 'src/schema')
-rw-r--r--src/schema/Ban.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/schema/Ban.ts b/src/schema/Ban.ts
new file mode 100644

index 00000000..947a60ea --- /dev/null +++ b/src/schema/Ban.ts
@@ -0,0 +1,9 @@ +export const BanCreateSchema = { + $delete_message_days: String, + $reason: String, +}; + +export interface BanCreateSchema { + delete_message_days?: string; + reason?: string; +}