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/models | |
parent | 74d40c7d8fac3ccc263af29c622f4481e18e8c59 (diff) |
Fix inaccurate admin log entry for re-sending confirmation e-mails (#19674)
Fixes #19593
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/admin/action_log_filter.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/admin/action_log_filter.rb b/app/models/admin/action_log_filter.rb index c7a7e1a4c..edb391e2e 100644 --- a/app/models/admin/action_log_filter.rb +++ b/app/models/admin/action_log_filter.rb @@ -47,6 +47,7 @@ class Admin::ActionLogFilter promote_user: { target_type: 'User', action: 'promote' }.freeze, remove_avatar_user: { target_type: 'User', action: 'remove_avatar' }.freeze, reopen_report: { target_type: 'Report', action: 'reopen' }.freeze, + resend_user: { target_type: 'User', action: 'resend' }.freeze, reset_password_user: { target_type: 'User', action: 'reset_password' }.freeze, resolve_report: { target_type: 'Report', action: 'resolve' }.freeze, sensitive_account: { target_type: 'Account', action: 'sensitive' }.freeze, |