blob: 3430596c720c4643e21e6c537f03515b7f57ca2f (
plain)
1
2
3
4
5
6
7
8
9
|
class Export::Workgroup < Export::Base
after_commit :launch_worker, :on => :create
option :duration, required: true, type: :integer, default_value: 90
def launch_worker
WorkgroupExportWorker.perform_async(id)
end
end
|