mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
12 lines
216 B
Ruby
12 lines
216 B
Ruby
|
module Account::Entry::Provided
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
include Synthable
|
||
|
|
||
|
def fetch_enrichment_info
|
||
|
return nil unless synth_client.present?
|
||
|
|
||
|
synth_client.enrich_transaction(name).info
|
||
|
end
|
||
|
end
|