about summary refs log tree commit diff
path: root/app/controllers/admin/accounts_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-06-07 03:24:10 +0200
committermultiple creatures <dev@multiple-creature.party>2019-11-19 16:38:32 -0600
commit23d379e0076e91e5651968b7af92178ba976988b (patch)
treec23b7e4cc848efdc964b049114f800d0283312b4 /app/controllers/admin/accounts_controller.rb
parent968de2cfc281216ec41ba5673b5cfb52c66006f7 (diff)
Add waiting time to list of pending accounts in admin UI (#10985)
Diffstat (limited to 'app/controllers/admin/accounts_controller.rb')
-rw-r--r--app/controllers/admin/accounts_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/admin/accounts_controller.rb b/app/controllers/admin/accounts_controller.rb
index 9054a8aca..a62eb6477 100644
--- a/app/controllers/admin/accounts_controller.rb
+++ b/app/controllers/admin/accounts_controller.rb
@@ -36,13 +36,13 @@ module Admin
     def approve
       authorize @account.user, :approve?
       @account.user.approve!
-      redirect_to admin_accounts_path(pending: '1')
+      redirect_to admin_pending_accounts_path
     end
 
     def reject
       authorize @account.user, :reject?
       SuspendAccountService.new.call(@account, including_user: true, destroy: true, skip_distribution: true)
-      redirect_to admin_accounts_path(pending: '1')
+      redirect_to admin_pending_accounts_path
     end
 
     def mark_unknown