Some extra scopes for user sorting

This commit is contained in:
Eugen Rochko 2016-09-24 14:59:52 +02:00
parent a706f1af04
commit 1215ab57ff
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,9 @@ class User < ApplicationRecord
has_many :oauth_applications, class_name: 'Doorkeeper::Application', as: :owner
scope :prolific, -> { joins('inner join statuses on statuses.account_id = users.account_id').select('users.*, count(statuses.id) as statuses_count').group('users.id').order('statuses_count desc') }
scope :recent, -> { order('created_at desc') }
def admin?
self.admin
end