rubycentral/cfp-app

View on GitHub
app/channels/notifications_channel.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NotificationsChannel < ApplicationCable::Channel
  def subscribed
    stream_from "notifications"
  end

  def unsubscribed
    stop_all_streams
  end
end