From 67b316a954b161cac27e16b6455837881919dd94 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Mon, 16 Dec 2019 05:57:34 +0800 Subject: Refactor comment (#9330) * Refactor comment * fix test * improve code --- modules/notification/base/notifier.go | 2 +- modules/notification/base/null.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/notification/base') diff --git a/modules/notification/base/notifier.go b/modules/notification/base/notifier.go index c8c89d22bd..934ee80aa7 100644 --- a/modules/notification/base/notifier.go +++ b/modules/notification/base/notifier.go @@ -21,7 +21,7 @@ type Notifier interface { NotifyTransferRepository(doer *models.User, repo *models.Repository, oldOwnerName string) NotifyNewIssue(*models.Issue) - NotifyIssueChangeStatus(*models.User, *models.Issue, bool) + NotifyIssueChangeStatus(*models.User, *models.Issue, *models.Comment, bool) NotifyIssueChangeMilestone(doer *models.User, issue *models.Issue, oldMilestoneID int64) NotifyIssueChangeAssignee(doer *models.User, issue *models.Issue, assignee *models.User, removed bool, comment *models.Comment) NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string) diff --git a/modules/notification/base/null.go b/modules/notification/base/null.go index 79e9f7f7fc..a04d0e8caa 100644 --- a/modules/notification/base/null.go +++ b/modules/notification/base/null.go @@ -31,7 +31,7 @@ func (*NullNotifier) NotifyNewIssue(issue *models.Issue) { } // NotifyIssueChangeStatus places a place holder function -func (*NullNotifier) NotifyIssueChangeStatus(doer *models.User, issue *models.Issue, isClosed bool) { +func (*NullNotifier) NotifyIssueChangeStatus(doer *models.User, issue *models.Issue, actionComment *models.Comment, isClosed bool) { } // NotifyNewPullRequest places a place holder function -- cgit v1.2.3