2017-04-13 04:04:23 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class SuspensionsController < BaseController
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def create
|
2017-11-11 11:23:33 -08:00
|
|
|
authorize @account, :suspend?
|
2017-04-13 04:04:23 -07:00
|
|
|
Admin::SuspensionWorker.perform_async(@account.id)
|
2017-11-23 17:05:53 -08:00
|
|
|
log_action :suspend, @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, :unsuspend?
|
2017-11-07 10:06:44 -08:00
|
|
|
@account.unsuspend!
|
2017-11-23 17:05:53 -08:00
|
|
|
log_action :unsuspend, @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
|