summary refs log tree commit diff
path: root/api/src/schema/Ban.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/schema/Ban.ts')
-rw-r--r--api/src/schema/Ban.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/api/src/schema/Ban.ts b/api/src/schema/Ban.ts
new file mode 100644
index 00000000..947a60ea
--- /dev/null
+++ b/api/src/schema/Ban.ts
@@ -0,0 +1,9 @@
+export const BanCreateSchema = {
+	$delete_message_days: String,
+	$reason: String,
+};
+
+export interface BanCreateSchema {
+	delete_message_days?: string;
+	reason?: string;
+}