...
|
...
|
@@ -43,7 +43,6 @@ func (l *SystemUpdateArticleLogic) SystemUpdateArticle(req *types.SystemArticleU |
|
|
//TargetUser 设定为分发给所有人,清空 WhoRead
|
|
|
req.WhoRead = make([]int64, 0)
|
|
|
}
|
|
|
|
|
|
// 检查文字数量
|
|
|
wordNum := 0
|
|
|
for i := range req.Section {
|
...
|
...
|
@@ -238,6 +237,10 @@ func (l *SystemUpdateArticleLogic) SystemUpdateArticle(req *types.SystemArticleU |
|
|
if err != nil {
|
|
|
return xerr.NewErrMsgErr("保存文章内容失败", err)
|
|
|
}
|
|
|
//文章定性
|
|
|
if len(article.Tags) > 0 {
|
|
|
|
|
|
}
|
|
|
return nil
|
|
|
}, true)
|
|
|
resp = &types.SystemArticleUpdateResponse{
|
...
|
...
|
@@ -253,3 +256,7 @@ func (l *SystemUpdateArticleLogic) SystemUpdateArticle(req *types.SystemArticleU |
|
|
}
|
|
|
return
|
|
|
}
|
|
|
|
|
|
func (l *SystemUpdateArticleLogic) setTags(conn transaction.Conn, article *domain.Article) error {
|
|
|
return nil
|
|
|
} |
...
|
...
|
|