diff options
author | ChrisChrome <christophercookman@gmail.com> | 2023-01-18 19:33:30 -0700 |
---|---|---|
committer | ChrisChrome <christophercookman@gmail.com> | 2023-01-18 19:33:30 -0700 |
commit | 6f5d42940353c2306d540361ea89b14af9c1aff8 (patch) | |
tree | f57cd1aeb924f31abb168bc408068c4da7333df9 | |
parent | Fix a funny security vuln (diff) | |
download | server-6f5d42940353c2306d540361ea89b14af9c1aff8.tar.xz |
It's seconds, not days
-rw-r--r-- | src/util/schemas/BanCreateSchema.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/schemas/BanCreateSchema.ts b/src/util/schemas/BanCreateSchema.ts index 447e2d73..0dab9da0 100644 --- a/src/util/schemas/BanCreateSchema.ts +++ b/src/util/schemas/BanCreateSchema.ts @@ -17,6 +17,6 @@ */ export interface BanCreateSchema { - delete_message_days?: string; + delete_message_seconds?: string; reason?: string; } |