Sha256: 1eb7c17069c5a51cbb91f2638adfe6a541ea6b950f148a5c95fa3e2e00537455
Contents?: true
Size: 739 Bytes
Versions: 1
Compression:
Stored size: 739 Bytes
Contents
module Pay module Stripe module Webhooks class CustomerUpdated def call(event) object = event.data.object pay_customer = Pay::Customer.find_by(processor: :stripe, processor_id: object.id) # Couldn't find user, we can skip return unless pay_customer.present? # Sync default card if (payment_method_id = pay_customer.customer.invoice_settings.default_payment_method) Pay::Stripe::PaymentMethod.sync(payment_method_id, {stripe_account: event.try(:account)}.compact) else # No default payment method set pay_customer.payment_methods.update_all(default: false) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pay-3.0.5 | lib/pay/stripe/webhooks/customer_updated.rb |