diff --git a/router/api-router.go b/router/api-router.go index 7008c55..0bab2e1 100644 --- a/router/api-router.go +++ b/router/api-router.go @@ -91,7 +91,7 @@ func SetApiRouter(router *gin.Engine) { selfRoute.POST("/stripe/amount", controller.RequestStripeAmount) selfRoute.POST("/creem/pay", middleware.CriticalRateLimit(), controller.RequestCreemPay) selfRoute.POST("/wechat/pay/amount", controller.RequestWechatPayAmount) - selfRoute.POST("/wechat/pay", middleware.CriticalRateLimit(), controller.RequestWechatPay) + selfRoute.POST("/wechat/pay", controller.RequestWechatPay) selfRoute.GET("/wechat/pay/status", controller.WechatPayStatus) selfRoute.POST("/aff_transfer", controller.TransferAffQuota) selfRoute.PUT("/setting", controller.UpdateUserSetting)