forked from External/greenlight
10 lines
150 B
Ruby
10 lines
150 B
Ruby
# frozen_string_literal: true
|
|
|
|
class NotifyUserWaitingJob < ApplicationJob
|
|
queue_as :default
|
|
|
|
def perform(room)
|
|
room.notify_waiting
|
|
end
|
|
end
|