Merge pull request 'by Robin at 20240417' (#298) from dev-feat-IRONFANS-70-Robin into feat-IRONFANS-70

Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/298
This commit is contained in:
chenhao 2024-04-17 23:40:11 +08:00
commit 4911ff6add
2 changed files with 6 additions and 1 deletions

View File

@ -243,7 +243,7 @@ func Init(r *gin.Engine) {
// 空间代运营表
apiZoneThirdPartnerGroup := r.Group("/api/zone_third_partner", PrepareToC())
apiZoneThirdPartnerGroup.POST("create", middleware.JSONParamValidator(zone_third_partner_proto.ApiCreateReq{}), middleware.JwtAuthenticator(), ApiCreateZoneThirdPartner)
apiZoneThirdPartnerGroup.POST("create", middleware.JSONParamValidator(zone_third_partner_proto.ApiCreateReq{}), middleware.JwtAuthenticator(), middleware.RequestDecryptor(), ApiCreateZoneThirdPartner)
//apiZoneThirdPartnerGroup.POST("update", middleware.JSONParamValidator(zone_third_partner_proto.ApiUpdateReq{}), middleware.JwtAuthenticator(), ApiUpdateZoneThirdPartner)
//apiZoneThirdPartnerGroup.POST("delete", middleware.JSONParamValidator(zone_third_partner_proto.ApiDeleteReq{}), middleware.JwtAuthenticator(), ApiDeleteZoneThirdPartner)
apiZoneThirdPartnerGroup.POST("list", middleware.JSONParamValidator(zone_third_partner_proto.ApiListReq{}), middleware.JwtAuthenticator(), ApiGetZoneThirdPartnerList)

View File

@ -527,6 +527,11 @@ func (s *Service) ApiGetAccountListForOthersByUserId(ctx *gin.Context, req *acco
ec = errcode.ErrCodeAccountSrvFail
return
}
if account == nil {
logger.Error("No account entity was found")
ec = errcode.ErrCodeAccountNotExist
return
}
vo = &accountproto.ApiListOthersVO{}
vo.CopyAccount(account)