mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 22:29:38 +02:00
13 lines
236 B
Ruby
13 lines
236 B
Ruby
module AutoSync
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
before_action :sync_family, if: -> { Current.family.present? && Current.family.needs_sync? }
|
|
end
|
|
|
|
private
|
|
|
|
def sync_family
|
|
Current.family.sync
|
|
end
|
|
end
|