Skip to content
Snippets Groups Projects
Commit 1215ab57 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Some extra scopes for user sorting

parent a706f1af
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment