🐛 Fix meet room page missing channel

This commit is contained in:
LittleSheep 2025-04-06 14:41:25 +08:00
parent 00ef003be9
commit aa3c0a9dbf

View File

@ -12,7 +12,7 @@ import (
)
func MapControllers(app *fiber.App) {
app.Get("/meet", renderMeetRoom)
app.Get("/meet/:channel", renderMeetRoom)
app.Get("/captcha", renderCaptcha)
app.Post("/captcha", validateCaptcha)
app.Get("/check-ip", getClientIP)