f4358d9993
closes #43
5 lines
111 B
Ruby
5 lines
111 B
Ruby
class RoomChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
stream_from params[:pubsub_token]
|
|
end
|
|
end
|