Namespace
Methods
S
Instance Public methods
send_confirmation()
# File actioncable/test/channel/stream_test.rb, line 22
def send_confirmation
  transmit_subscription_confirmation
end
subscribed()
# File actioncable/test/channel/stream_test.rb, line 15
def subscribed
  if params[:id]
    @room = Room.new params[:id]
    stream_from "test_room_#{@room.id}", coder: pick_coder(params[:coder])
  end
end