lib/active_merchant/billing/integrations/two_checkout.rb in bitfluent-activemerchant-1.5.1.1 vs lib/active_merchant/billing/integrations/two_checkout.rb in bitfluent-activemerchant-1.15.1
- old
+ new
@@ -8,14 +8,14 @@
autoload 'Notification', File.dirname(__FILE__) + '/two_checkout/notification'
mattr_accessor :service_url
self.service_url = 'https://www.2checkout.com/2co/buyer/purchase'
- def self.notification(post)
+ def self.notification(post, options = {})
Notification.new(post)
end
- def self.return(query_string)
+ def self.return(query_string, options = {})
Return.new(query_string)
end
end
end
end