mastodon/app/controllers/admin/accounts_controller.rb

39 lines
1.0 KiB
Ruby
Raw Normal View History

# 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
layout 'public'
def index
2016-12-03 19:08:07 +01:00
@accounts = Account.order('domain ASC, username ASC').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?
@accounts = @accounts.where(silenced: true) if params[:silenced].present?
@accounts = @accounts.reorder('id desc') if params[:recent].present?
end
def show; end
def update
if @account.update(account_params)
redirect_to admin_accounts_path
else
render :show
end
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])
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
end