summary refs log tree commit diff
path: root/src/schemas
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-12-07 23:18:57 +0100
committerRory& <root@rory.gay>2025-12-12 22:56:02 +0100
commitbdbf6d06b25fcdb2e9cbcdd32872ae62bfc8893c (patch)
tree76e769af417dba58a85d53996b3993ea073e2170 /src/schemas
parentMerge remote-tracking branch 'BrajamohanDas-afk/refactor/remove-getIpAddress'... (diff)
downloadserver-ts-bdbf6d06b25fcdb2e9cbcdd32872ae62bfc8893c.tar.xz
Fix IP tracking for bans
Diffstat (limited to 'src/schemas')
-rw-r--r--src/schemas/uncategorised/BanCreateSchema.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/schemas/uncategorised/BanCreateSchema.ts b/src/schemas/uncategorised/BanCreateSchema.ts

index 6d30ca22..8f349f4b 100644 --- a/src/schemas/uncategorised/BanCreateSchema.ts +++ b/src/schemas/uncategorised/BanCreateSchema.ts
@@ -17,7 +17,7 @@ */ export interface BanCreateSchema { - delete_message_seconds?: string; - delete_message_days?: string; + delete_message_seconds?: number; + delete_message_days?: number; reason?: string; }