add user waiting notifications back to main room

This commit is contained in:
Zachary Chai
2017-02-16 14:24:55 -05:00
parent 74f1f4c071
commit 7adba52824
5 changed files with 20 additions and 10 deletions

View File

@ -19,6 +19,8 @@ class NotifyUserWaitingJob < ApplicationJob
def perform(room, meeting, user)
ActionCable.server.broadcast "#{room}-#{meeting}_meeting_updates_channel",
{ action: 'user_waiting', user: user }
{ action: 'user_waiting', user: user }
ActionCable.server.broadcast "#{room}_meeting_updates_channel",
{ action: 'user_waiting', user: user }
end
end