demarches-normaliennes/app/jobs/instructeur_email_notification_job.rb

8 lines
164 B
Ruby
Raw Normal View History

class InstructeurEmailNotificationJob < ApplicationJob
2019-03-13 17:27:36 +01:00
queue_as :cron
def perform(*args)
NotificationService.send_instructeur_email_notification
2019-03-13 17:27:36 +01:00
end
end