Newer
Older
dmpopidor / app / helpers / notifications_helper.rb
@Quentin Sonrel Quentin Sonrel on 16 May 2018 329 bytes Implemented Notifications
module NotificationsHelper
  # Return FA html class depending on Notification level
  # @return [String] Font Awesome HTML class
  def fa_classes(notification)
    case notification.level
    when 'warning'
      'fa-exclamation-circle'
    when 'danger'
      'fa-times-circle'
    else
      'fa-info-circle'
    end
  end
end