docbrown/app/workers/notifications/new_follower_worker.rb

11 lines
262 B
Ruby

module Notifications
class NewFollowerWorker
include Sidekiq::Worker
sidekiq_options queue: :medium_priority, retry: 10
def perform(follow_data, is_read = false)
Notifications::NewFollower::Send.call(follow_data, is_read)
end
end
end