Add suspend account functionality to admin UI
This commit is contained in:
		@ -58,6 +58,10 @@ class Account < ApplicationRecord
 | 
			
		||||
  scope :without_followers, -> { where('(select count(f.id) from follows as f where f.target_account_id = accounts.id) = 0') }
 | 
			
		||||
  scope :with_followers, -> { where('(select count(f.id) from follows as f where f.target_account_id = accounts.id) > 0') }
 | 
			
		||||
  scope :expiring, ->(time) { where(subscription_expires_at: nil).or(where('subscription_expires_at < ?', time)).remote.with_followers }
 | 
			
		||||
  scope :silenced, -> { where(silenced: true) }
 | 
			
		||||
  scope :suspended, -> { where(suspended: true) }
 | 
			
		||||
  scope :recent, -> { reorder('id desc') }
 | 
			
		||||
  scope :alphabetic, -> { order('domain ASC, username ASC') }
 | 
			
		||||
 | 
			
		||||
  def follow!(other_account)
 | 
			
		||||
    active_relationships.where(target_account: other_account).first_or_create!(target_account: other_account)
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user