summary refs log tree commit diff
diff options
context:
space:
mode:
authorChris Chrome <christophercookman@gmail.com>2023-01-18 19:39:36 -0700
committerGitHub <noreply@github.com>2023-01-18 19:39:36 -0700
commita9a2d89372cea4bda7d07a05eebffce77ed5f0ce (patch)
tree9502ba6f08e207d95b6b04bae02fc33b12df9891
parentFix a funny security vuln (diff)
parentApparently its still accepted, just depricated (diff)
downloadserver-a9a2d89372cea4bda7d07a05eebffce77ed5f0ce.tar.xz
Merge pull request #955 from fosscord/dev/fix-bans
Fix banning users from the client
-rw-r--r--src/util/schemas/BanCreateSchema.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/schemas/BanCreateSchema.ts b/src/util/schemas/BanCreateSchema.ts
index 447e2d73..fdbf982f 100644
--- a/src/util/schemas/BanCreateSchema.ts
+++ b/src/util/schemas/BanCreateSchema.ts
@@ -17,6 +17,7 @@
 */
 
 export interface BanCreateSchema {
+	delete_message_seconds?: string;
 	delete_message_days?: string;
 	reason?: string;
 }