mod_tokenauth: Periodically clear out expired tokens and grants

This should ensure expired grants eventually disappear.
This commit is contained in:
Kim Alvefur 2023-10-09 20:31:35 +02:00
parent 0cd9aba8e2
commit d9043249de

View file

@ -341,3 +341,9 @@ function sasl_handler(auth_provider, purpose, extra)
return token_user, true, token_info;
end;
end
module:daily(function()
for username in token_store:items() do
get_user_grants(username); -- clears out expired grants
end
end)