Class: Pay::Webhooks::StripeController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Pay::Webhooks::StripeController
- Defined in:
- app/controllers/pay/webhooks/stripe_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'app/controllers/pay/webhooks/stripe_controller.rb', line 8 def create event = verified_event queue_event(event) if event.livemode || Pay::Stripe.webhook_receive_test_events head :ok rescue ::Stripe::SignatureVerificationError => e log_error(e) head :bad_request end |