6eb163a706
1 2 3 4 5 6 7 8 9 10 11 12 13
14 15
require 'active_job/arguments' module ActiveJob module Identifier extend ActiveSupport::Concern included do attr_writer :job_id end def job_id @job_id ||= SecureRandom.uuid end end end