We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey!
I need to fill a field called "description" in a transaction to Authorize.NET.
ActiveMerchant::Billing::AuthorizeNetGateway already map options[:description] to that field.
ActiveMerchant::Billing::AuthorizeNetGateway
options[:description]
The problem is that I can't figure out an easy way to populate these options from my app.
Spree::Gateway::AuthorizeNet#options doesn't give us a way to pass custom options.
Spree::Gateway::AuthorizeNet#options
o/
The text was updated successfully, but these errors were encountered:
For now, the solution was to patch ActiveMerchant::Billing::AuthorizeNetGateway#purchase method, utilizing .prepend.
ActiveMerchant::Billing::AuthorizeNetGateway#purchase
.prepend
Sorry, something went wrong.
No branches or pull requests
Hey!
I need to fill a field called "description" in a transaction to Authorize.NET.
ActiveMerchant::Billing::AuthorizeNetGateway
already mapoptions[:description]
to that field.The problem is that I can't figure out an easy way to populate these options from my app.
Spree::Gateway::AuthorizeNet#options
doesn't give us a way to pass custom options.o/
The text was updated successfully, but these errors were encountered: