mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* Simplify provider concerns * Update tests * Add UI warning for missing Synth key if family requires external data
11 lines
216 B
Ruby
11 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
|