summary refs log tree commit diff
path: root/src/util/schemas
diff options
context:
space:
mode:
authorMathMan05 <mathmanrm@gmail.com>2025-04-30 19:10:07 -0500
committerRory& <root@rory.gay>2025-05-28 08:46:35 +0200
commitaf70a7f21bb0c0629f56d8590feddc3adde85580 (patch)
tree1d93f73cc3523519e76fffd4721bf8a0f75a2439 /src/util/schemas
parentforgot to test on rebuild (diff)
downloadserver-ts-af70a7f21bb0c0629f56d8590feddc3adde85580.tar.xz
channel is nullable fixes
Diffstat (limited to 'src/util/schemas')
-rw-r--r--src/util/schemas/ChannelReorderSchema.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/schemas/ChannelReorderSchema.ts b/src/util/schemas/ChannelReorderSchema.ts

index a026608a..657ed420 100644 --- a/src/util/schemas/ChannelReorderSchema.ts +++ b/src/util/schemas/ChannelReorderSchema.ts
@@ -20,5 +20,5 @@ export type ChannelReorderSchema = { id: string; position?: number; lock_permissions?: boolean; - parent_id?: string; + parent_id?: null | string; }[];