if trace.user == current_user
trace.visible = false
trace.save!
- TraceDestroyerJob.perform_later(trace) if Settings.trace_use_job_queue
+ TraceDestroyerJob.perform_later(trace)
head :ok
else
trace = do_create(params[:file], tags, description, visibility)
if trace.id
- TraceImporterJob.perform_later(trace) if Settings.trace_use_job_queue
+ TraceImporterJob.perform_later(trace)
render :plain => trace.id.to_s
elsif trace.valid?
head :internal_server_error