| Module | TeamsHelper |
| In: |
app/helpers/teams_helper.rb
|
Show team contact with email, if we have one
# File app/helpers/teams_helper.rb, line 3 3: def link_to_contact(team) 4: if team.contact_email.present? 5: mail_to team.contact_email, team.contact_name 6: else 7: team.contact_name 8: end 9: end