Drosty/truegm

View on GitHub
app/helpers/league_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module LeagueHelper
  def salary_display_color_class team
    return "text-success" if team.under_cap?
    return "text-error"
  end
end