conflict-test-feat-20240117-001 #88
|
@ -1580,6 +1580,13 @@ func (s *Service) ApiCreateMoment(ctx *gin.Context, req *momentproto.ApiCreateRe
|
|||
ec = errcode.ErrCodeMomentSrvFail
|
||||
return
|
||||
}
|
||||
|
||||
// 添加审核任务
|
||||
imageaudittasks := s.CreateMomentImageAudit(ctx, req.Moment)
|
||||
textaudittasks := s.CreateMomentTextAudit(ctx, req.Moment)
|
||||
imageaudit.AddTasks(imageaudittasks)
|
||||
textaudit.AddTasks(textaudittasks)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -1605,6 +1612,12 @@ func (s *Service) ApiUpdateMoment(ctx *gin.Context, req *momentproto.ApiUpdateRe
|
|||
ec = errcode.ErrCodeMomentSrvFail
|
||||
return
|
||||
}
|
||||
|
||||
// 添加审核任务
|
||||
imageaudittasks := s.CreateMomentImageAudit(ctx, req.Moment)
|
||||
textaudittasks := s.CreateMomentTextAudit(ctx, req.Moment)
|
||||
imageaudit.AddTasks(imageaudittasks)
|
||||
textaudit.AddTasks(textaudittasks)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue