recording async update

This commit is contained in:
Zachary Chai
2016-10-31 17:39:22 -04:00
parent db9d06b72f
commit e400bf41e8
11 changed files with 100 additions and 13 deletions

View File

@ -0,0 +1,5 @@
class RecordingUpdatesChannel < ApplicationCable::Channel
def subscribed
stream_from "#{params[:username]}_recording_updates_channel"
end
end