Method: BaseHelper#flash_class

Defined in:
app/helpers/base_helper.rb

#flash_class(level) ⇒ Object



350
351
352
353
354
355
356
# File 'app/helpers/base_helper.rb', line 350

def flash_class(level)
  case level
    when :notice then "alert-info"
    when :error then "alert-danger"
    when :alert then "alert-warning"
  end
end