视频会议

This commit is contained in:
duoaohui
2026-05-21 19:01:25 +08:00
parent 3d7e64dfa9
commit fc20a97442
7 changed files with 150 additions and 3 deletions

View File

@@ -46,4 +46,11 @@ func RegisterRoutes(
// 鉴权由 controller 内部用 X-Internal-Secret header + INTERNAL_WEBHOOK_SECRET 校验
// 不走 JWT因为调用方是 media-server 而非用户
r.POST("/internal/meeting/recordings/failure", recordingCtrl.MediaServerFailureWebhook)
internalCloudLaw := r.Group("/internal/cloud-law")
{
internalCloudLaw.POST("/meetings", ctrl.CloudLawCreateMeeting)
internalCloudLaw.GET("/meetings/:code", ctrl.CloudLawGetMeeting)
internalCloudLaw.POST("/meetings/:code/end", ctrl.CloudLawEndMeeting)
}
}