From a61f8bcb6444603ab692f6a0f707b4e38b40d047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Mata?= Date: Thu, 28 May 2026 00:14:10 +0200 Subject: [PATCH] Linter noise --- app/models/sync.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/sync.rb b/app/models/sync.rb index 61da7288f..d148dfe74 100644 --- a/app/models/sync.rb +++ b/app/models/sync.rb @@ -19,7 +19,7 @@ class Sync < ApplicationRecord scope :incomplete, -> { where("syncs.status IN (?)", %w[pending syncing]) } scope :visible, -> { incomplete.where("syncs.created_at > ?", VISIBLE_FOR.ago) } - after_commit :update_family_sync_timestamp, on: [:create, :update] + after_commit :update_family_sync_timestamp, on: [ :create, :update ] serialize :sync_stats, coder: JSON