|
@@ -176,7 +176,14 @@ public class ArticleAuditService {
|
|
|
longArticleVideoAudit.setFinishTimestamp(System.currentTimeMillis());
|
|
|
longArticleVideoAuditRepository.save(longArticleVideoAudit);
|
|
|
// 构建删除文章记录 并保存
|
|
|
- saveDeleteRecord(longArticleVideoAudit.getOssPath());
|
|
|
+ // saveDeleteRecord(longArticleVideoAudit.getOssPath());
|
|
|
+ // 暂时不做删除 先发送通知
|
|
|
+ FeishuMessageSender.sendWebHookMessage(FeishuRobotIdEnum.ARTICLE_DELETE.getRobotId(),
|
|
|
+ "视频审核不通过" +
|
|
|
+ "traceId:" + longArticleVideoAudit.getTraceId() +
|
|
|
+ "视频id:" + longArticleVideoAudit.getVideoId() +
|
|
|
+ "视频path:" + longArticleVideoAudit.getOssPath() +
|
|
|
+ "敏感等级:" + sensitiveLevelEnum.getDescription());
|
|
|
}
|
|
|
}
|
|
|
|