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 | 95ba38b0cf8d3a8de80f17a87dd6a765d5add1d1 (patch) | |
tree | b7c2ac915a1dc1aa1282060e528bcf900ed75244 /src | |
parent | Fix a funny security vuln (diff) | |
parent | Apparently its still accepted, just depricated (diff) | |
download | server-95ba38b0cf8d3a8de80f17a87dd6a765d5add1d1.tar.xz |
Merge pull request #955 from fosscord/dev/fix-bans
Fix banning users from the client
Diffstat (limited to 'src')
-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; } |