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