oauth update

This commit is contained in:
Zachary Chai
2016-11-04 14:28:40 -04:00
parent e093ead683
commit b4e0e73692
21 changed files with 79 additions and 144 deletions

View File

@ -1,5 +1,5 @@
class MeetingUpdatesChannel < ApplicationCable::Channel
def subscribed
stream_from "#{params[:username]}_meeting_updates_channel"
stream_from "#{params[:encrypted_id]}_meeting_updates_channel"
end
end

View File

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