6 lines
111 B
Ruby
6 lines
111 B
Ruby
|
class RoomChannel < ApplicationCable::Channel
|
||
|
def subscribed
|
||
|
stream_from params[:pubsub_token]
|
||
|
end
|
||
|
end
|