Class: Pay::Stripe::Webhooks::CustomerUpdated

Inherits:
Object
  • Object
show all
Defined in:
lib/pay/stripe/webhooks/customer_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/customer_updated.rb', line 5

def call(event)
  object = event.data.object
  billable = Pay.find_billable(processor: :stripe, processor_id: object.id)

  # Couldn't find user, we can skip
  return unless billable.present?

  billable.sync_card_from_stripe
end