signup and room waiting

This commit is contained in:
Josh
2018-06-07 15:52:42 -04:00
parent 56489ee6cd
commit 657feb777f
18 changed files with 191 additions and 143 deletions

View File

@ -0,0 +1,7 @@
class NotifyUserWaitingJob < ApplicationJob
queue_as :default
def perform(room)
room.notify_waiting
end
end