feat(subscribe): update subscription route to use V2 handler

This commit is contained in:
Chang lue Tsen 2025-08-15 13:05:36 -04:00
parent 41d660bb9e
commit 740dd48763

View File

@ -87,7 +87,7 @@ func RegisterSubscribeHandlers(router *gin.Engine, serverCtx *svc.ServiceContext
if path == "" { if path == "" {
path = "/api/subscribe" path = "/api/subscribe"
} }
router.GET(path, SubscribeHandler(serverCtx)) router.GET(path, V2SubscribeHandler(serverCtx))
router.GET(path+"/v2", V2SubscribeHandler(serverCtx)) router.GET(path+"/v2", V2SubscribeHandler(serverCtx))
} }