demarches-normaliennes/app/jobs/instructeur_email_notification_job.rb
2020-03-31 12:25:46 +02:00

7 lines
184 B
Ruby

class InstructeurEmailNotificationJob < CronJob
self.cron_expression = "0 10 * * MON-FRI"
def perform(*args)
NotificationService.send_instructeur_email_notification
end
end