1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00

Capture webhook errors in Sentry

This commit is contained in:
Zach Gollwitzer 2025-02-07 09:54:15 -05:00
parent 972c850d27
commit 331de2f997

View file

@ -11,6 +11,7 @@ class WebhooksController < ApplicationController
render json: { received: true }, status: :ok
rescue => error
Sentry.capture_exception(error)
render json: { error: "Invalid webhook: #{error.message}" }, status: :bad_request
end
@ -33,10 +34,12 @@ class WebhooksController < ApplicationController
Rails.logger.info "Unhandled event type: #{event.type}"
end
rescue JSON::ParserError
rescue JSON::ParserError => error
Sentry.capture_exception(error)
render json: { error: "Invalid payload" }, status: :bad_request
return
rescue Stripe::SignatureVerificationError
rescue Stripe::SignatureVerificationError => error
Sentry.capture_exception(error)
render json: { error: "Invalid signature" }, status: :bad_request
return
end