gambosite/app/controllers/leaderboard_controller.rb

6 lines
143 B
Ruby
Raw Permalink Normal View History

2025-01-24 10:22:13 -08:00
class LeaderboardController < ApplicationController
def index
2025-01-25 17:37:01 -08:00
@players = Player.where(main_player_id: nil).order(purse: :desc)
2025-01-24 10:22:13 -08:00
end
end