class EnqueueProcessUnmatchedConsentFormsJob
Public Instance Methods
Source
# File app/jobs/enqueue_process_unmatched_consent_forms_job.rb, line 8 def perform ConsentForm.unmatched.find_each do |consent_form| ProcessConsentFormJob.perform_later(consent_form.id) end end