6 lines
143 B
Ruby
6 lines
143 B
Ruby
class LeaderboardController < ApplicationController
|
|
def index
|
|
@players = Player.where(main_player_id: nil).order(purse: :desc)
|
|
end
|
|
end
|