您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

content.go 598B

1234567891011121314151617181920212223
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package issue
  5. import (
  6. "code.gitea.io/gitea/models"
  7. "code.gitea.io/gitea/modules/notification"
  8. )
  9. // ChangeContent changes issue content, as the given user.
  10. func ChangeContent(issue *models.Issue, doer *models.User, content string) (err error) {
  11. oldContent := issue.Content
  12. if err := issue.ChangeContent(doer, content); err != nil {
  13. return err
  14. }
  15. notification.NotifyIssueChangeContent(doer, issue, oldContent)
  16. return nil
  17. }