7 lines
151 B
Ruby
7 lines
151 B
Ruby
class NotifyDraftNotSubmittedJob < CronJob
|
|
self.cron_expression = "0 7 * * *"
|
|
|
|
def perform(*args)
|
|
Dossier.notify_draft_not_submitted
|
|
end
|
|
end
|