forked from External/greenlight
6 lines
145 B
Ruby
6 lines
145 B
Ruby
class ModeratorJoinsChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
stream_from "moderator_#{params[:username]}_join_channel"
|
|
end
|
|
end
|