rosa-build/app/admin/shared/node_instruction.rb

12 lines
139 B
Ruby
Raw Normal View History

2014-04-14 22:32:25 +01:00
def status_color(ni)
case
when ni.ready?
:green
when ni.disabled?
nil
when ni.failed?
:red
else
:orange
end
end