From f4bff87805f240f8d099b14c91cfbaf08c8a38fc Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Sun, 27 Jul 2025 15:51:35 +0100 Subject: [PATCH] appview/notify: apply gofmt Signed-off-by: oppiliappan --- appview/notify/notifier.go | 6 +++--- appview/posthog/notifier.go | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/appview/notify/notifier.go b/appview/notify/notifier.go index 32c923b7..89f81215 100644 --- a/appview/notify/notifier.go +++ b/appview/notify/notifier.go @@ -30,15 +30,15 @@ var _ Notifier = &BaseNotifier{} func (m *BaseNotifier) NewRepo(ctx context.Context, repo *db.Repo) {} -func (m *BaseNotifier) NewStar(ctx context.Context, star *db.Star) {} +func (m *BaseNotifier) NewStar(ctx context.Context, star *db.Star) {} func (m *BaseNotifier) DeleteStar(ctx context.Context, star *db.Star) {} func (m *BaseNotifier) NewIssue(ctx context.Context, issue *db.Issue) {} -func (m *BaseNotifier) NewFollow(ctx context.Context, follow *db.Follow) {} +func (m *BaseNotifier) NewFollow(ctx context.Context, follow *db.Follow) {} func (m *BaseNotifier) DeleteFollow(ctx context.Context, follow *db.Follow) {} -func (m *BaseNotifier) NewPull(ctx context.Context, pull *db.Pull) {} +func (m *BaseNotifier) NewPull(ctx context.Context, pull *db.Pull) {} func (m *BaseNotifier) NewPullComment(ctx context.Context, comment *db.PullComment) {} func (m *BaseNotifier) UpdateProfile(ctx context.Context, profile *db.Profile) {} diff --git a/appview/posthog/notifier.go b/appview/posthog/notifier.go index 701865c7..8dbd1988 100644 --- a/appview/posthog/notifier.go +++ b/appview/posthog/notifier.go @@ -75,7 +75,7 @@ func (n *posthogNotifier) NewPull(ctx context.Context, pull *db.Pull) { DistinctId: pull.OwnerDid, Event: "new_pull", Properties: posthog.Properties{ - "repo_at": pull.RepoAt, + "repo_at": pull.RepoAt, "pull_id": pull.PullId, }, }) @@ -89,7 +89,7 @@ func (n *posthogNotifier) NewPullComment(ctx context.Context, comment *db.PullCo DistinctId: comment.OwnerDid, Event: "new_pull_comment", Properties: posthog.Properties{ - "repo_at": comment.RepoAt, + "repo_at": comment.RepoAt, "pull_id": comment.PullId, }, }) -- 2.51.2