diff --git a/appview/notify/db/db.go b/appview/notify/db/db.go index 036c7cd4..429cba56 100644 --- a/appview/notify/db/db.go +++ b/appview/notify/db/db.go @@ -207,7 +207,7 @@ func (n *databaseNotifier) DeleteIssue(ctx context.Context, issue *models.Issue) } func (n *databaseNotifier) NewIssueLabelOp(ctx context.Context, issue *models.Issue) {} -func (n *databaseNotifier) NewPullLabelOp(ctx context.Context, pull *models.Pull) {} +func (n *databaseNotifier) NewPullLabelOp(ctx context.Context, pull *models.Pull) {} func (n *databaseNotifier) NewFollow(ctx context.Context, follow *models.Follow) { actorDid := syntax.DID(follow.UserDid) diff --git a/appview/notify/notifier.go b/appview/notify/notifier.go index 3fd258a7..756b622e 100644 --- a/appview/notify/notifier.go +++ b/appview/notify/notifier.go @@ -54,7 +54,7 @@ func (m *BaseNotifier) NewIssueState(ctx context.Context, actor syntax.DID, issu func (m *BaseNotifier) DeleteIssue(ctx context.Context, issue *models.Issue) {} func (m *BaseNotifier) NewIssueLabelOp(ctx context.Context, issue *models.Issue) {} -func (m *BaseNotifier) NewPullLabelOp(ctx context.Context, pull *models.Pull) {} +func (m *BaseNotifier) NewPullLabelOp(ctx context.Context, pull *models.Pull) {} func (m *BaseNotifier) NewFollow(ctx context.Context, follow *models.Follow) {} func (m *BaseNotifier) DeleteFollow(ctx context.Context, follow *models.Follow) {}