Change batch account suspension to create a strike (#20897)

This commit is contained in:
Claire 2022-11-17 10:52:51 +01:00 committed by GitHub
parent 413481f953
commit 0cc77263fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -115,6 +115,10 @@ class Form::AccountBatch
authorize(account, :suspend?)
log_action(:suspend, account)
account.suspend!(origin: :local)
account.strikes.create!(
account: current_account,
action: :suspend
)
Admin::SuspensionWorker.perform_async(account.id)
end