2019-10-30 08:36:25 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-10-30 08:36:25 +00:00
|
|
|
|
|
|
|
package issue
|
|
|
|
|
|
|
|
import (
|
2023-09-15 06:13:19 +00:00
|
|
|
"context"
|
|
|
|
|
2022-06-13 09:37:59 +00:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service "code.gitea.io/gitea/services/notify"
|
2019-10-30 08:36:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ChangeContent changes issue content, as the given user.
|
2024-05-27 15:34:18 +00:00
|
|
|
func ChangeContent(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, content string, contentVersion int) (err error) {
|
2019-10-30 08:36:25 +00:00
|
|
|
oldContent := issue.Content
|
|
|
|
|
2024-05-27 15:34:18 +00:00
|
|
|
if err := issues_model.ChangeIssueContent(ctx, issue, doer, content, contentVersion); err != nil {
|
2019-10-30 08:36:25 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-09-15 06:13:19 +00:00
|
|
|
notify_service.IssueChangeContent(ctx, doer, issue, oldContent)
|
2019-10-30 08:36:25 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|