2016-11-30 15:32:26 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::AccountsController < ApplicationController
|
|
|
|
before_action :require_admin!
|
2016-12-04 18:10:40 +01:00
|
|
|
before_action :set_account, except: :index
|
2016-11-30 15:32:26 +01:00
|
|
|
|
|
|
|
layout 'public'
|
|
|
|
|
|
|
|
def index
|
2016-12-06 18:22:59 +01:00
|
|
|
@accounts = Account.alphabetic.paginate(page: params[:page], per_page: 40)
|
2016-12-04 18:10:40 +01:00
|
|
|
|
|
|
|
@accounts = @accounts.local if params[:local].present?
|
|
|
|
@accounts = @accounts.remote if params[:remote].present?
|
|
|
|
@accounts = @accounts.where(domain: params[:by_domain]) if params[:by_domain].present?
|
2016-12-06 18:22:59 +01:00
|
|
|
@accounts = @accounts.silenced if params[:silenced].present?
|
|
|
|
@accounts = @accounts.recent if params[:recent].present?
|
|
|
|
@accounts = @accounts.suspended if params[:suspended].present?
|
2016-12-04 18:10:40 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def show; end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if @account.update(account_params)
|
|
|
|
redirect_to admin_accounts_path
|
|
|
|
else
|
|
|
|
render :show
|
|
|
|
end
|
2016-11-30 15:32:26 +01:00
|
|
|
end
|
|
|
|
|
2016-12-06 18:22:59 +01:00
|
|
|
def suspend
|
|
|
|
Admin::SuspensionWorker.perform_async(@account.id)
|
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
2016-12-04 18:10:40 +01:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
2016-12-03 19:08:07 +01:00
|
|
|
@account = Account.find(params[:id])
|
2016-11-30 15:32:26 +01:00
|
|
|
end
|
2016-12-04 18:10:40 +01:00
|
|
|
|
|
|
|
def account_params
|
2016-12-05 22:59:30 +01:00
|
|
|
params.require(:account).permit(:silenced, :suspended)
|
2016-12-04 18:10:40 +01:00
|
|
|
end
|
2016-11-30 15:32:26 +01:00
|
|
|
end
|