You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }