Monorepo for Tangled

*: fmt

Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.org>

+2 -2
+1 -1
appview/notify/db/db.go
··· 207 207 } 208 208 209 209 func (n *databaseNotifier) NewIssueLabelOp(ctx context.Context, issue *models.Issue) {} 210 - func (n *databaseNotifier) NewPullLabelOp(ctx context.Context, pull *models.Pull) {} 210 + func (n *databaseNotifier) NewPullLabelOp(ctx context.Context, pull *models.Pull) {} 211 211 212 212 func (n *databaseNotifier) NewFollow(ctx context.Context, follow *models.Follow) { 213 213 actorDid := syntax.DID(follow.UserDid)
+1 -1
appview/notify/notifier.go
··· 54 54 func (m *BaseNotifier) DeleteIssue(ctx context.Context, issue *models.Issue) {} 55 55 56 56 func (m *BaseNotifier) NewIssueLabelOp(ctx context.Context, issue *models.Issue) {} 57 - func (m *BaseNotifier) NewPullLabelOp(ctx context.Context, pull *models.Pull) {} 57 + func (m *BaseNotifier) NewPullLabelOp(ctx context.Context, pull *models.Pull) {} 58 58 59 59 func (m *BaseNotifier) NewFollow(ctx context.Context, follow *models.Follow) {} 60 60 func (m *BaseNotifier) DeleteFollow(ctx context.Context, follow *models.Follow) {}