mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tokenauth: Periodically clear out expired tokens and grants
This should ensure expired grants eventually disappear.
This commit is contained in:
parent
0cd9aba8e2
commit
d9043249de
1 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue