diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2019-11-04 04:59:09 +0800 |
---|---|---|
committer | zeripath <art27@cantab.net> | 2019-11-03 20:59:09 +0000 |
commit | 491887d44132b8103ed0d753f95ecd43d600adba (patch) | |
tree | 5b8f7e7584f914ba0bed06369ecfbaea37db44ae /services/issue | |
parent | 7971b05d2b96e45a4ee3954a39a7db9b9bbb807f (diff) | |
download | gitea-491887d44132b8103ed0d753f95ecd43d600adba.tar.gz gitea-491887d44132b8103ed0d753f95ecd43d600adba.zip |
Move actions to notification (#8785)
Diffstat (limited to 'services/issue')
-rw-r--r-- | services/issue/issue.go | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/services/issue/issue.go b/services/issue/issue.go index ee2f176a43..aa06ba4097 100644 --- a/services/issue/issue.go +++ b/services/issue/issue.go @@ -5,10 +5,7 @@ package issue import ( - "fmt" - "code.gitea.io/gitea/models" - "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/notification" ) @@ -24,18 +21,6 @@ func NewIssue(repo *models.Repository, issue *models.Issue, labelIDs []int64, uu } } - if err := models.NotifyWatchers(&models.Action{ - ActUserID: issue.Poster.ID, - ActUser: issue.Poster, - OpType: models.ActionCreateIssue, - Content: fmt.Sprintf("%d|%s", issue.Index, issue.Title), - RepoID: repo.ID, - Repo: repo, - IsPrivate: repo.IsPrivate, - }); err != nil { - log.Error("NotifyWatchers: %v", err) - } - notification.NotifyNewIssue(issue) return nil |