room updates in job

This commit is contained in:
Zachary Chai
2016-11-15 16:44:22 -05:00
parent c79ae3c1d6
commit f35012a5f2
3 changed files with 16 additions and 3 deletions

View File

@ -0,0 +1,9 @@
class JoinMeetingJob < ApplicationJob
queue_as :default
def perform(room)
ActionCable.server.broadcast "#{room}_meeting_updates_channel",
action: 'moderator_joined',
moderator: 'joined'
end
end