© 2026 Hedgehog Software, LLC
The image cannot be displayed because it contains error
routes.put("/:channelId", async (c: Context) => { const channelId = c.req.param("channelId"); const formData = await c.req.formData(); const updatedChannel = await ChannelService.updateChannel( channelId, formData ); return c.json(updatedChannel, 200); });