Linter noise

This commit is contained in:
Juan José Mata
2026-05-28 00:14:10 +02:00
committed by GitHub
parent 8317b5eb23
commit a61f8bcb64

View File

@@ -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