app/helpers/setup_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module SetupHelper
  def step_status_icon(step)
    step.todo? ? "exclamation-triangle text-warning fa-lg" : "check text-success fa-lg"
  end
end