mod_tokenauth: Track creation time of tokens

This commit is contained in:
Matthew Wild 2020-02-28 21:55:40 +00:00
parent 92c65ed9af
commit 40bb67c03b

View file

@ -18,6 +18,7 @@ function create_jid_token(actor_jid, token_jid, token_scope, token_ttl)
local token_info = {
owner = actor_jid;
created = os.time();
expires = token_ttl and (os.time() + token_ttl) or nil;
jid = token_jid;
session = {