7 lines
197 B
Ruby
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
|