greenlight/app/channels/waiting_channel.rb
2018-06-26 10:29:46 -04:00

8 lines
157 B
Ruby

# frozen_string_literal: true
class WaitingChannel < ApplicationCable::Channel
def subscribed
stream_from "#{params[:uid]}_waiting_channel"
end
end