gambosite/app/controllers/leaderboard_controller.rb
2025-02-27 15:47:41 -08:00

7 lines
197 B
Ruby

class LeaderboardController < ApplicationController
def index
@players = Player.where(main_player_id: nil).order(purse: :desc)
@lootban = Lootban.first&.name || "Nobody... yet"
end
end