Browse Source

Some extra scopes for user sorting

closed-social-v3
Eugen Rochko 8 years ago
parent
commit
1215ab57ff
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      app/models/user.rb

+ 3
- 0
app/models/user.rb 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

Loading…
Cancel
Save