8 lines
138 B
Ruby
8 lines
138 B
Ruby
|
class NotifyDraftNotSubmittedJob < ApplicationJob
|
||
|
queue_as :cron
|
||
|
|
||
|
def perform(*args)
|
||
|
Dossier.notify_draft_not_submitted
|
||
|
end
|
||
|
end
|