Files
sure/app/channels/application_cable/connection.rb
2025-03-17 17:26:19 -04:00

11 lines
221 B
Ruby

module ApplicationCable
class Connection < ActionCable::Connection::Base
rescue_from StandardError, with: :report_error
private
def report_error(e)
Sentry.capture_exception(e)
end
end
end