diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-11-02 18:50:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-02 18:50:21 +0100 |
commit | 125322718bfe983e94937f5d127003d47a138313 (patch) | |
tree | 99cd74df2bfdeec375a57de1abd20b644572c1ae /app/controllers | |
parent | 74d40c7d8fac3ccc263af29c622f4481e18e8c59 (diff) |
Fix inaccurate admin log entry for re-sending confirmation e-mails (#19674)
Fixes #19593
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/admin/confirmations_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/confirmations_controller.rb b/app/controllers/admin/confirmations_controller.rb index efe7dcbd4..6f4e42679 100644 --- a/app/controllers/admin/confirmations_controller.rb +++ b/app/controllers/admin/confirmations_controller.rb @@ -17,7 +17,7 @@ module Admin @user.resend_confirmation_instructions - log_action :confirm, @user + log_action :resend, @user flash[:notice] = I18n.t('admin.accounts.resend_confirmation.success') redirect_to admin_accounts_path |