Method: Toaster::AutomationRun#get_task_execution

Defined in:
lib/toaster/model/automation_run.rb

#get_task_execution(task) ⇒ Object



67
68
69
70
71
72
73
# File 'lib/toaster/model/automation_run.rb', line 67

def get_task_execution(task)
  task_executions().each do |e|
    if e.task.uuid == task.uuid
      return e
    end
  end
end