forked from External/greenlight
8 lines
119 B
Ruby
8 lines
119 B
Ruby
class NotifyUserWaitingJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(room)
|
|
room.notify_waiting
|
|
end
|
|
end
|