getsentry/raven-ruby

View on GitHub
sentry-rails/examples/rails-6.0/app/channels/appearance_channel.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AppearanceChannel < ApplicationCable::Channel
  def subscribed
  end

  def unsubscribed
  end

  def hello
  end

  def goodbye(data)
    1 / 0
  end
end