forked from External/greenlight
6 lines
146 B
Ruby
6 lines
146 B
Ruby
class MeetingUpdatesChannel < ApplicationCable::Channel
|
|
def subscribed
|
|
stream_from "#{params[:username]}_meeting_updates_channel"
|
|
end
|
|
end
|