Class: NoCheckout::Stripe::WebhooksController
Constant Summary
collapse
- STRIPE_SIGNING_SECRET =
ENV["STRIPE_SIGNING_SECRET"]
WebhooksController::UnhandledWebhookError
Instance Method Summary
collapse
#create
Instance Method Details
#customer_source_created ⇒ Object
20
21
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 20
def customer_source_created
end
|
#customer_subscription_created ⇒ Object
8
9
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 8
def customer_subscription_created
end
|
#customer_subscription_deleted ⇒ Object
14
15
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 14
def customer_subscription_deleted
end
|
#customer_subscription_trial_will_end ⇒ Object
17
18
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 17
def customer_subscription_trial_will_end
end
|
#customer_subscription_updated ⇒ Object
11
12
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 11
def customer_subscription_updated
end
|
#customer_updated ⇒ Object
23
24
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 23
def customer_updated
end
|
#invoice_created ⇒ Object
29
30
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 29
def invoice_created
end
|
#invoice_finalized ⇒ Object
26
27
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 26
def invoice_finalized
end
|
#invoice_paid ⇒ Object
32
33
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 32
def invoice_paid
end
|
#invoice_payment_succeeded ⇒ Object
47
48
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 47
def invoice_payment_succeeded
end
|
#invoiceitem_created ⇒ Object
35
36
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 35
def invoiceitem_created
end
|
#invoiceitem_updated ⇒ Object
38
39
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 38
def invoiceitem_updated
end
|
#payment_intent_created ⇒ Object
41
42
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 41
def payment_intent_created
end
|
#payment_intent_succeeded ⇒ Object
44
45
|
# File 'app/controllers/nocheckout/stripe/webhooks_controller.rb', line 44
def payment_intent_succeeded
end
|