Skip to content
Extraits de code Groupes Projets
accounts_controller.rb 1,47 ko
Newer Older
  • Learn to ignore specific revisions
  • # frozen_string_literal: true
    
    
    module Admin
      class AccountsController < BaseController
    
        before_action :set_account, only: [:show, :subscribe, :unsubscribe, :redownload]
        before_action :require_remote_account!, only: [:subscribe, :unsubscribe, :redownload]
    
    
        def index
    
          @accounts = filtered_accounts.page(params[:page])
    
    nullkal's avatar
    nullkal a validé
        def show
          @account_moderation_note = current_account.account_moderation_notes.new(target_account: @account)
          @moderation_notes = @account.targeted_moderation_notes.latest
        end
    
    
        def subscribe
          Pubsubhubbub::SubscribeWorker.perform_async(@account.id)
          redirect_to admin_account_path(@account.id)
        end
    
        def unsubscribe
    
          Pubsubhubbub::UnsubscribeWorker.perform_async(@account.id)
    
          redirect_to admin_account_path(@account.id)
        end
    
        def redownload
    
          @account.reset_avatar!
          @account.reset_header!
    
          @account.save!
    
          redirect_to admin_account_path(@account.id)
    
        def set_account
          @account = Account.find(params[:id])
        end
    
        def require_remote_account!
          redirect_to admin_account_path(@account.id) if @account.local?
        end
    
    
        def filtered_accounts
          AccountFilter.new(filter_params).results
    
        def filter_params
          params.permit(
            :local,
            :remote,
            :by_domain,
            :silenced,
            :recent,
    
            :suspended,
            :username,
            :display_name,
            :email,
            :ip