# HG changeset patch # User Kim Alvefur # Date 1697885799 -7200 # Node ID c34266c061c905ca83f29074160c258ce772cf8c # Parent 5db61e0dfc62c55d2e8e27f0450a94123264b749 mod_tokenauth: Set name/description on cleanup job diff -r 5db61e0dfc62 -r c34266c061c9 plugins/mod_tokenauth.lua --- a/plugins/mod_tokenauth.lua Sat Oct 21 12:33:55 2023 +0200 +++ b/plugins/mod_tokenauth.lua Sat Oct 21 12:56:39 2023 +0200 @@ -347,7 +347,7 @@ end; end -module:daily(function() +module:daily("clear expired grants", function() for username in token_store:items() do get_user_grants(username); -- clears out expired grants end