diff options
author | Chris Chrome <christophercookman@gmail.com> | 2023-01-18 19:39:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-18 19:39:36 -0700 |
commit | a9a2d89372cea4bda7d07a05eebffce77ed5f0ce (patch) | |
tree | 9502ba6f08e207d95b6b04bae02fc33b12df9891 | |
parent | Fix a funny security vuln (diff) | |
parent | Apparently its still accepted, just depricated (diff) | |
download | server-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.ts | 1 |
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; } |