scottwillson/racing_on_rails

View on GitHub
app/helpers/teams_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module TeamsHelper
  # Show team contact with email, if we have one
  def link_to_contact(team)
    if team.contact_email.present?
      mail_to team.contact_email, team.contact_name
    else
      team.contact_name
    end
  end
end