Class: Pay::Stripe::Webhooks::PaymentMethodUpdated

Inherits:
Object
  • Object
show all
Defined in:
lib/pay/stripe/webhooks/payment_method_updated.rb

Instance Method Summary collapse

Instance Method Details

#call(event) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/pay/stripe/webhooks/payment_method_updated.rb', line 5

def call(event)
  object = event.data.object
  if object.customer
    Pay::Stripe::PaymentMethod.sync(object.id, stripe_account: event.try(:account))
  else
    # If customer was removed, we should delete the payment method if it exists
    Pay::PaymentMethod.find_by_processor_and_id(:stripe, object.id)&.destroy
  end
end