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