spree_paypal_express/app/models/billing_integration/paypal_express.rb

12 lines
290 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
preference :review, :boolean, :default => false
2010-01-22 16:29:55 +00:00
def provider_class
ActiveMerchant::Billing::PaypalExpressGateway
end
end