3scale/porta

View on GitHub
app/helpers/profiles_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ProfilesHelper
  def custom_company_type?(profile)
    !profile.company_type.blank? and
      (profile.company_type == Profile::CustomCompanyType or
       !Profile::CompanyTypes.include?(profile.company_type))
  end
end