demarches-normaliennes/app/jobs/instructeur_email_notification_job.rb

8 lines
184 B
Ruby
Raw Normal View History

2020-03-28 16:49:40 +01:00
class InstructeurEmailNotificationJob < CronJob
self.cron_expression = "0 10 * * MON-FRI"
2019-03-13 17:27:36 +01:00
def perform(*args)
NotificationService.send_instructeur_email_notification
2019-03-13 17:27:36 +01:00
end
end