Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
crlssn committed Dec 2, 2024
1 parent 6af1c3b commit 85cd5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/rpc/v1/notification.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func NewNotificationHandler(r *repo.Repo) apiv1connect.NotificationServiceHandle
return &notificationHandler{r}
}

func (h *notificationHandler) ListNotifications(ctx context.Context, req *connect.Request[v1.ListNotificationsRequest]) (*connect.Response[v1.ListNotificationsResponse], error) {
func (h *notificationHandler) ListNotifications(ctx context.Context, req *connect.Request[v1.ListNotificationsRequest]) (*connect.Response[v1.ListNotificationsResponse], error) { //nolint:cyclop // TODO: Simplify this method.
log := xcontext.MustExtractLogger(ctx)
userID := xcontext.MustExtractUserID(ctx)

Expand Down

0 comments on commit 85cd5c8

Please sign in to comment.