# HG changeset patch # User Kim Alvefur # Date 1696876295 -7200 # Node ID ddfe07041fc515bb4a7a2fa3ef88185875589b38 # Parent a1c927323f06d71d9e33d06c83d4a967b025f9d6 mod_tokenauth: Periodically clear out expired tokens and grants This should ensure expired grants eventually disappear. diff -r a1c927323f06 -r ddfe07041fc5 plugins/mod_tokenauth.lua --- a/plugins/mod_tokenauth.lua Mon Oct 16 23:51:52 2023 +0200 +++ b/plugins/mod_tokenauth.lua Mon Oct 09 20:31:35 2023 +0200 @@ -341,3 +341,9 @@ 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)