This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-13 04:04:23 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class SilencesController < BaseController
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def create
|
2017-11-11 11:23:33 -08:00
|
|
|
authorize @account, :silence?
|
2017-11-23 17:05:53 -08:00
|
|
|
@account.update!(silenced: true)
|
|
|
|
log_action :silence, @account
|
2017-04-13 04:04:23 -07:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2017-11-11 11:23:33 -08:00
|
|
|
authorize @account, :unsilence?
|
2017-11-23 17:05:53 -08:00
|
|
|
@account.update!(silenced: false)
|
|
|
|
log_action :unsilence, @account
|
2017-04-13 04:04:23 -07:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:account_id])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|