lib/active_merchant/billing/gateways/braintree_orange.rb in activemerchant-1.20.4 vs lib/active_merchant/billing/gateways/braintree_orange.rb in activemerchant-1.21.0
- old
+ new
@@ -9,9 +9,13 @@
self.display_name = 'Braintree (Orange Platform)'
def api_url
'https://secure.braintreepaymentgateway.com/api/transact.php'
end
+
+ def add_processor(post, options)
+ post[:processor_id] = options[:processor] unless options[:processor].nil?
+ end
end
end
end