Drosty/truegm

View on GitHub
app/controllers/nfl_players_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NflPlayersController < ApplicationController

  # GET /nfl_players
  # GET /nfl_players.json
  def index
    @players = NflPlayer.all.order(:salary)
  end

end