9 lines
249 B
Ruby
9 lines
249 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Cron::InstructeurEmailNotificationJob < Cron::CronJob
|
|
self.schedule_expression = "from monday through friday at 9 am"
|
|
|
|
def perform(*args)
|
|
NotificationService.send_instructeur_email_notification
|
|
end
|
|
end
|