From: Eugen Rochko Date: Tue, 9 Apr 2019 05:19:52 +0000 (+0200) Subject: Fix permission denied bug on approve all/reject all pending accounts (#10519) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=654f79d2b1f70324a756a1d981e48fcaa8245531;p=mastodon.git Fix permission denied bug on approve all/reject all pending accounts (#10519) --- diff --git a/app/controllers/admin/pending_accounts_controller.rb b/app/controllers/admin/pending_accounts_controller.rb index f145108b3..2ea7785fc 100644 --- a/app/controllers/admin/pending_accounts_controller.rb +++ b/app/controllers/admin/pending_accounts_controller.rb @@ -18,12 +18,12 @@ module Admin end def approve_all - Form::AccountBatch.new(account_ids: User.pending.pluck(:account_id), action: 'approve').save + Form::AccountBatch.new(current_account: current_account, account_ids: User.pending.pluck(:account_id), action: 'approve').save redirect_to admin_pending_accounts_path(current_params) end def reject_all - Form::AccountBatch.new(account_ids: User.pending.pluck(:account_id), action: 'reject').save + Form::AccountBatch.new(current_account: current_account, account_ids: User.pending.pluck(:account_id), action: 'reject').save redirect_to admin_pending_accounts_path(current_params) end