From 32c38bc24958581e0c21e4143fbd94e02dde2c22 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 13 Oct 2022 22:46:19 +0100 Subject: mod_tokenauth: Allow attaching an arbitrary data table to a token --- plugins/mod_tokenauth.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/mod_tokenauth.lua b/plugins/mod_tokenauth.lua index 22d2199a..9cd73570 100644 --- a/plugins/mod_tokenauth.lua +++ b/plugins/mod_tokenauth.lua @@ -13,7 +13,7 @@ local function select_role(username, host, role) return usermanager.get_user_role(username, host); end -function create_jid_token(actor_jid, token_jid, token_role, token_ttl) +function create_jid_token(actor_jid, token_jid, token_role, token_ttl, token_data) token_jid = jid.prep(token_jid); if not actor_jid or token_jid ~= actor_jid and not jid.compare(token_jid, actor_jid) then return nil, "not-authorized"; @@ -33,6 +33,7 @@ function create_jid_token(actor_jid, token_jid, token_role, token_ttl) resource = token_resource; role = token_role; + data = token_data; }; local token_id = id.long(); -- cgit v1.2.3