Changeset

13276:c34266c061c9

mod_tokenauth: Set name/description on cleanup job
author Kim Alvefur <zash@zash.se>
date Sat, 21 Oct 2023 12:56:39 +0200
parents 13275:5db61e0dfc62
children 13277:0b4c3573b248
files plugins/mod_tokenauth.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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