JordanHatch/maslow-redux

View on GitHub
app/helpers/teams_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TeamsHelper
  def team_icon(team)
    team_initials = team.name.split(' ').map(&:first)[0..1].join.upcase
    content_tag :span, team_initials, class: 'team-icon', title: team.name
  end
end