1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-18 07:52:23 +01:00

(feat) set the number of new attempts available in case the payment is rejected to 1 for PayZen

This commit is contained in:
Du Peng 2023-11-30 11:37:03 +01:00
parent 347877db55
commit e10cff04d7
2 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,7 @@
- fix a bug: user was not able to reserve at the same time of an event with pre-registration invalidated
- fix a bug: avoids crash if invoicing_profile has no address associated to it
- improvement: better text contrast on customizable colors. Good for accessibility.
- Improvement: set the number of new attempts available in case the payment is rejected to 1 for PayZen
## v6.3.4 2023 November 23

View File

@ -30,7 +30,10 @@ class PayZen::Charge < PayZen::Client
orderId: order_id,
formAction: form_action,
contrib: contrib,
customer: customer)
customer: customer,
transactionOptions: {
cardOptions: { retry: 0 }
})
end
##