Module: SolidusAfterpay::Spree::OrderDecorator
- Defined in:
- app/decorators/models/solidus_afterpay/spree/order_decorator.rb
Instance Method Summary collapse
Instance Method Details
#available_payment_methods ⇒ Object
6 7 8 9 10 |
# File 'app/decorators/models/solidus_afterpay/spree/order_decorator.rb', line 6 def available_payment_methods @available_payment_methods ||= super.select do |payment_method| !payment_method.respond_to?(:available_for_order?) || payment_method.available_for_order?(self) end end |