class EnqueuePatientsAgedOutOfSchoolsJob
Public Instance Methods
Source
# File app/jobs/enqueue_patients_aged_out_of_schools_job.rb, line 6 def perform academic_year = AcademicYear.pending ids = Location.gias_school.with_team(academic_year:).pluck(:id) PatientsAgedOutOfSchoolJob.perform_bulk(ids.zip) end