From 0e98fe9953d5f5f67476fd94903dcd73f75bfa54 Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Sat, 10 Sep 2022 21:32:33 +1000 Subject: Added missing props to ChannelModifySchema --- api/src/routes/channels/#channel_id/index.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'api/src') diff --git a/api/src/routes/channels/#channel_id/index.ts b/api/src/routes/channels/#channel_id/index.ts index 2fca4fdf..932a933a 100644 --- a/api/src/routes/channels/#channel_id/index.ts +++ b/api/src/routes/channels/#channel_id/index.ts @@ -70,6 +70,10 @@ export interface ChannelModifySchema { nsfw?: boolean; rtc_region?: string; default_auto_archive_duration?: number; + default_reaction_emoji?: string | null; + flags?: number; + default_thread_rate_limit_per_user?: number; + video_quality_mode?: number; } router.patch("/", route({ body: "ChannelModifySchema", permission: "MANAGE_CHANNELS" }), async (req: Request, res: Response) => { -- cgit 1.5.1