15 lines
225 B
Ruby
15 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
|