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

  def job_id
    "NESTED-JOB-ID"
  end
end