mirror of https://github.com/tootsuite/mastodon
				
				
				
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			594 B
		
	
	
	
		
			Ruby
		
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			594 B
		
	
	
	
		
			Ruby
		
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
module Admin
 | 
						|
  class ActionLogsController < BaseController
 | 
						|
    before_action :set_action_logs
 | 
						|
 | 
						|
    def index
 | 
						|
      authorize :audit_log, :index?
 | 
						|
      @auditable_accounts = Account.where(id: Admin::ActionLog.reorder(nil).select('distinct account_id')).select(:id, :username)
 | 
						|
    end
 | 
						|
 | 
						|
    private
 | 
						|
 | 
						|
    def set_action_logs
 | 
						|
      @action_logs = Admin::ActionLogFilter.new(filter_params).results.page(params[:page])
 | 
						|
    end
 | 
						|
 | 
						|
    def filter_params
 | 
						|
      params.slice(:page, *Admin::ActionLogFilter::KEYS).permit(:page, *Admin::ActionLogFilter::KEYS)
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |