tab/app/controllers/concerns/statistics.rb

16 lines
225 B
Ruby
Raw Normal View History

2015-09-11 18:04:45 +02:00
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