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 SuspensionsController < BaseController
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def create
|
|
|
|
Admin::SuspensionWorker.perform_async(@account.id)
|
|
|
|
redirect_to admin_accounts_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2017-11-07 10:06:44 -08:00
|
|
|
@account.unsuspend!
|
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
|