Some extra scopes for user sorting
This commit is contained in:
		
							parent
							
								
									a706f1af04
								
							
						
					
					
						commit
						1215ab57ff
					
				
					 1 changed files with 3 additions and 0 deletions
				
			
		| 
						 | 
					@ -8,6 +8,9 @@ class User < ApplicationRecord
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  has_many :oauth_applications, class_name: 'Doorkeeper::Application', as: :owner
 | 
					  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?
 | 
					  def admin?
 | 
				
			||||||
    self.admin
 | 
					    self.admin
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue