Class: StripeEvent::WebhookController
- Inherits:
-
ActionController::Base
- Object
- ActionController::Base
- StripeEvent::WebhookController
- Defined in:
- app/controllers/stripe_event/webhook_controller.rb
Instance Method Summary collapse
Instance Method Details
#event ⇒ Object
7 8 9 10 11 12 13 14 15 |
# File 'app/controllers/stripe_event/webhook_controller.rb', line 7 def event StripeEvent.instrument(verified_event) head :ok rescue Stripe::SignatureVerificationError => e log_error(e) head :bad_request rescue StripeEvent::ProcessError head :unprocessable_entity end |