by Robin at 20240125; apipaycallback not token auth

This commit is contained in:
Leufolium 2024-01-25 09:44:53 +08:00
parent 12ee83520f
commit 3e484d0e31
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ func Init(r *gin.Engine) {
opProductGroup.POST("list", middleware.JSONParamValidator(productproto.OpListReq{}), middleware.JwtAuthenticator(), OpGetProductList)
extVasPayGroup := r.Group("/ext/vas")
extVasPayGroup.POST("alipay_callback", middleware.JwtAuthenticator(), AlipayCallback)
extVasPayGroup.POST("alipay_callback", AlipayCallback)
opVasPayGroup := r.Group("/op/vas", PrepareOp())
opVasPayGroup.POST("create_order", middleware.JSONParamValidator(vasproto.OpCreateOrderReq{}), middleware.JwtAuthenticator(), OpCreateOrder)