aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/nested_job.rb
blob: aafad0dba9b334b1b01f321e13189003222f59a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class NestedJob < ActiveJob::Base
  def perform
    LoggingJob.perform_later "NestedJob"
  end

  def job_id
    "NESTED-JOB-ID"
  end
end