8 lines
154 B
Ruby
8 lines
154 B
Ruby
|
class DeclarativeProceduresJob < ApplicationJob
|
||
|
queue_as :cron
|
||
|
|
||
|
def perform(*args)
|
||
|
Procedure.declarative.find_each(&:process_dossiers!)
|
||
|
end
|
||
|
end
|