mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-29 18:19:39 +02:00
8 lines
179 B
Ruby
8 lines
179 B
Ruby
|
module PlaidItem::Provided
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
def plaid_provider
|
||
|
@plaid_provider ||= Provider::Registry.plaid_provider_for_region(self.plaid_region)
|
||
|
end
|
||
|
end
|