* Add trending statuses * Fix dangling items with stale scores in localized sets * Various fixes and improvements - Change approve_all/reject_all to approve_accounts/reject_accounts - Change Trends::Query methods to not mutate the original query - Change Trends::Query#skip to offset - Change follow recommendations to be refreshed in a transaction * Add tests for trending statuses filtering behaviour * Fix not applying filtering scope in controller
		
			
				
	
	
		
			76 lines
		
	
	
		
			942 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			942 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class AccountPolicy < ApplicationPolicy
 | 
						|
  def index?
 | 
						|
    staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def show?
 | 
						|
    staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def warn?
 | 
						|
    staff? && !record.user&.staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def suspend?
 | 
						|
    staff? && !record.user&.staff? && !record.instance_actor?
 | 
						|
  end
 | 
						|
 | 
						|
  def destroy?
 | 
						|
    record.suspended_temporarily? && admin?
 | 
						|
  end
 | 
						|
 | 
						|
  def unsuspend?
 | 
						|
    staff? && record.suspension_origin_local?
 | 
						|
  end
 | 
						|
 | 
						|
  def sensitive?
 | 
						|
    staff? && !record.user&.staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def unsensitive?
 | 
						|
    staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def silence?
 | 
						|
    staff? && !record.user&.staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def unsilence?
 | 
						|
    staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def redownload?
 | 
						|
    admin?
 | 
						|
  end
 | 
						|
 | 
						|
  def remove_avatar?
 | 
						|
    staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def remove_header?
 | 
						|
    staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def subscribe?
 | 
						|
    admin?
 | 
						|
  end
 | 
						|
 | 
						|
  def unsubscribe?
 | 
						|
    admin?
 | 
						|
  end
 | 
						|
 | 
						|
  def memorialize?
 | 
						|
    admin? && !record.user&.admin? && !record.instance_actor?
 | 
						|
  end
 | 
						|
 | 
						|
  def unblock_email?
 | 
						|
    staff?
 | 
						|
  end
 | 
						|
 | 
						|
  def review?
 | 
						|
    staff?
 | 
						|
  end
 | 
						|
end
 |