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