spree_paypal_express/app/models/billing_integration/paypal_express.rb

11 lines
240 B
Ruby
Raw Normal View History

2010-01-22 16:29:55 +00:00
class BillingIntegration::PaypalExpress < BillingIntegration
preference :login, :string
preference :password, :password
preference :signature, :string
def provider_class
ActiveMerchant::Billing::PaypalExpressGateway
end
end