mirror of
https://github.com/we-promise/sure.git
synced 2026-04-16 18:44:13 +00:00
- Fix upsert method to handle string/symbol keys with indifferent access - Add missing show route and view for SimpleFin items - Fix test fixtures to use correct user references - Update test data to match real-world JSON format (string keys, BigDecimal) - Apply code formatting and linting fixes (rubocop, erb_lint) - Ensure all SimpleFin tests pass (16/16 passing)
8 lines
151 B
Ruby
8 lines
151 B
Ruby
module SimplefinItem::Provided
|
|
extend ActiveSupport::Concern
|
|
|
|
def simplefin_provider
|
|
@simplefin_provider ||= Provider::Simplefin.new
|
|
end
|
|
end
|