Newer
Older
dmpopidor / app / helpers / notifications_helper.rb
@Bodacious Bodacious on 13 Aug 2018 301 bytes Replace YARD documentation with Tomdoc
module NotificationsHelper

  # FA html class depending on Notification level
  #
  # Returns String
  def fa_classes(notification)
    case notification.level
    when 'warning'
      'fa-exclamation-circle'
    when 'danger'
      'fa-times-circle'
    else
      'fa-info-circle'
    end
  end
end