mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 07:39:39 +02:00
13 lines
254 B
Ruby
13 lines
254 B
Ruby
|
module Account::Enrichable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
def enrich_data
|
||
|
DataEnricher.new(self).run
|
||
|
end
|
||
|
|
||
|
private
|
||
|
def enrichable?
|
||
|
family.data_enrichment_enabled? || (linked? && Rails.application.config.app_mode.hosted?)
|
||
|
end
|
||
|
end
|