greenlight/app/channels/meeting_updates_channel.rb

6 lines
146 B
Ruby

class MeetingUpdatesChannel < ApplicationCable::Channel
def subscribed
stream_from "#{params[:username]}_meeting_updates_channel"
end
end