anthonymidili/EasyKeep

View on GitHub
app/helpers/companies_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CompaniesHelper
  # display the company logo or the default example logo
  def logo_or_default
    if current_company.logo.present?
      image_tag current_company.logo_url(:thumb)
    else
      image_pack_tag 'default_logo.png', class: 'resize_photo'
    end
  end
end