tab/app/controllers/concerns/statistics.rb
2015-09-11 18:04:45 +02:00

16 lines
225 B
Ruby

class Statistics < Rails::Application
def shameful_users
User.where('balance > :amount', amount: config.shameful_balance)
.order(:balance)
end
private
def zeus_balance
User.zeus.balance
end
end