diff options
-rw-r--r-- | plugins/mod_user_account_management.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/mod_user_account_management.lua b/plugins/mod_user_account_management.lua index 4f32da00..c2a0e3a2 100644 --- a/plugins/mod_user_account_management.lua +++ b/plugins/mod_user_account_management.lua @@ -171,6 +171,12 @@ function restore_account(username) return true, "Account restored"; end +-- Automatically clear pending deletion if an account is re-enabled +module:context("*"):hook("user-enabled", function (event) + if event.host ~= module.host then return; end + deleted_accounts:set(event.username, nil); +end); + local cleanup_time = module:measure("cleanup", "times"); function cleanup_soft_deleted_accounts() |