diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-06-07 03:24:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-07 03:24:10 +0200 |
commit | a60364ca7d26c82c9353980d0966d37e9aa66014 (patch) | |
tree | a02878d00f104e266562962230063b14eef6baf5 /app/controllers/admin | |
parent | c672676c035a0900eb32e49133e388be67375665 (diff) |
Add waiting time to list of pending accounts in admin UI (#10985)
Diffstat (limited to 'app/controllers/admin')
-rw-r--r-- | app/controllers/admin/accounts_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/admin/accounts_controller.rb b/app/controllers/admin/accounts_controller.rb index e7795e95c..b0d45ce47 100644 --- a/app/controllers/admin/accounts_controller.rb +++ b/app/controllers/admin/accounts_controller.rb @@ -48,13 +48,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 unsilence |