Class: Pay::Stripe::Webhooks::PaymentFailed
- Inherits:
-
Object
- Object
- Pay::Stripe::Webhooks::PaymentFailed
- Defined in:
- lib/pay/stripe/webhooks/payment_failed.rb
Instance Method Summary collapse
Instance Method Details
#call(event) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/pay/stripe/webhooks/payment_failed.rb', line 5 def call(event) # Event is of type "invoice" see: # https://stripe.com/docs/api/invoices/object object = event.data.object pay_subscription = Pay::Subscription.find_by_processor_and_id(:stripe, object.subscription) return if pay_subscription.nil? if Pay.send_email?(:payment_failed, pay_subscription) Pay.mailer.with( pay_customer: pay_subscription.customer, stripe_invoice: object ).payment_failed.deliver_now end end |