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

  def job_id
    "NESTED-JOB-ID"
  end
end