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