lib/active_merchant/billing/gateways/paypal_ca.rb in activemerchant-1.4.2 vs lib/active_merchant/billing/gateways/paypal_ca.rb in activemerchant-1.5.0
- old
+ new
@@ -2,10 +2,10 @@
module ActiveMerchant #:nodoc:
module Billing #:nodoc:
# The PayPal gateway for PayPal Website Payments Pro Canada only supports Visa and MasterCard
class PaypalCaGateway < PaypalGateway
- self.supported_cardtypes = [:visa, :master]
+ self.supported_cardtypes = [:visa, :master, :american_express]
self.supported_countries = ['CA']
self.homepage_url = 'https://www.paypal.com/cgi-bin/webscr?cmd=_wp-pro-overview-outside'
self.display_name = 'PayPal Website Payments Pro (CA)'
end
end