Method: Tasker::StepDagRelationship#child_step_ids_array

Defined in:
app/models/tasker/step_dag_relationship.rb

#child_step_ids_arrayObject



59
60
61
62
63
# File 'app/models/tasker/step_dag_relationship.rb', line 59

def child_step_ids_array
  return [] if child_step_ids.blank?

  child_step_ids.is_a?(Array) ? child_step_ids : JSON.parse(child_step_ids)
end