spree_paypal_express/app/models/billing_integration/paypal_express_uk.rb

12 lines
294 B
Ruby
Raw Normal View History

2010-01-25 10:32:08 +00:00
class BillingIntegration::PaypalExpressUk < BillingIntegration
preference :login, :string
preference :password, :password
preference :signature, :string
preference :review, :boolean, :default => false
2010-01-25 10:32:08 +00:00
def provider_class
ActiveMerchant::Billing::PaypalExpressUkGateway
end
end