You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
447 B

  1. # frozen_string_literal: true
  2. module Admin
  3. class SuspensionsController < BaseController
  4. before_action :set_account
  5. def create
  6. Admin::SuspensionWorker.perform_async(@account.id)
  7. redirect_to admin_accounts_path
  8. end
  9. def destroy
  10. @account.update(suspended: false)
  11. redirect_to admin_accounts_path
  12. end
  13. private
  14. def set_account
  15. @account = Account.find(params[:account_id])
  16. end
  17. end
  18. end