Sha256: 8d22ff8f1704c9f019fe2fc6a86e6693046a600e10e81efeab462da83c95c0ed
Contents?: true
Size: 1002 Bytes
Versions: 7
Compression:
Stored size: 1002 Bytes
Contents
# A subscription successfully moves to the next billing cycle. This will also occur when either a new transaction is created mid-cycle due to proration on an upgrade or a billing cycle is skipped due to the presence of a negative balance that covers the cost of the subscription. module Pay module Braintree module Webhooks class SubscriptionChargedSuccessfully def call(event) subscription = event.subscription return if subscription.nil? pay_subscription = Pay::Subscription.find_by_processor_and_id(:braintree, subscription.id) return unless pay_subscription.present? pay_customer = pay_subscription.customer pay_charge = Pay::Braintree::Billable.new(pay_customer).save_transaction(subscription.transactions.first) if pay_charge && Pay.send_emails Pay::UserMailer.with(pay_customer: pay_customer, charge: pay_charge).receipt.deliver_later end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems