diff options
author | Daniel Baumann <daniel@debian.org> | 2024-10-18 20:33:49 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2024-12-12 23:57:56 +0100 |
commit | e68b9d00a6e05b3a941f63ffb696f91e554ac5ec (patch) | |
tree | 97775d6c13b0f416af55314eb6a89ef792474615 /services/issue/content.go | |
parent | Initial commit. (diff) | |
download | forgejo-e68b9d00a6e05b3a941f63ffb696f91e554ac5ec.tar.xz forgejo-e68b9d00a6e05b3a941f63ffb696f91e554ac5ec.zip |
Adding upstream version 9.0.3.
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'services/issue/content.go')
-rw-r--r-- | services/issue/content.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/services/issue/content.go b/services/issue/content.go new file mode 100644 index 0000000..612a9a6 --- /dev/null +++ b/services/issue/content.go @@ -0,0 +1,25 @@ +// Copyright 2019 The Gitea Authors. All rights reserved. +// SPDX-License-Identifier: MIT + +package issue + +import ( + "context" + + issues_model "code.gitea.io/gitea/models/issues" + user_model "code.gitea.io/gitea/models/user" + notify_service "code.gitea.io/gitea/services/notify" +) + +// ChangeContent changes issue content, as the given user. +func ChangeContent(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, content string, contentVersion int) (err error) { + oldContent := issue.Content + + if err := issues_model.ChangeIssueContent(ctx, issue, doer, content, contentVersion); err != nil { + return err + } + + notify_service.IssueChangeContent(ctx, doer, issue, oldContent) + + return nil +} |