2017-04-13 13:04:23 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class SuspensionsController < BaseController
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def create
|
2017-11-11 20:23:33 +01:00
|
|
|
authorize @account, :suspend?
|
2017-04-13 13:04:23 +02:00
|
|
|
Admin::SuspensionWorker.perform_async(@account.id)
|
2017-11-24 02:05:53 +01:00
|
|
|
log_action :suspend, @account
|
2017-04-13 13:04:23 +02:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2017-11-11 20:23:33 +01:00
|
|
|
authorize @account, :unsuspend?
|
2017-11-07 19:06:44 +01:00
|
|
|
@account.unsuspend!
|
2017-11-24 02:05:53 +01:00
|
|
|
log_action :unsuspend, @account
|
2017-04-13 13:04:23 +02:00
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:account_id])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|