Method: Notifu::Actors::Slack#color

Defined in:
lib/notifu/actors/slack.rb

#colorObject



57
58
59
60
61
62
63
64
65
66
67
68
# File 'lib/notifu/actors/slack.rb', line 57

def color
  case self.issue.code.to_i
  when 0
    "good"
  when 1
    "warning"
  when 2
    "danger"
  else
    "#999999"
  end
end