aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/nested_job.rb
blob: 21b7692cd150449349f515e3f5a24f4c843d5a1a (plain) (blame)
1
2
3
4
5
6
7
8
9
class NestedJob < ActiveJob::Base
  def perform
    LoggingJob.perform_later "NestedJob"
  end

  def job_id
    "NESTED-JOB-ID"
  end
end