berkes/spree_billing_sisow

View on GitHub
app/models/spree/payment_method/sisow_billing/ideal.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spree
  class PaymentMethod::SisowBilling
    class Ideal < SisowPaymentMethod
      def self.issuer_list
        PaymentMethod::SisowBilling.configure
        Sisow::Issuer.list
      end

      def payment_type
        "ideal"
      end
    end
  end
end