mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_tokenauth: Allow attaching an arbitrary data table to a token
This commit is contained in:
parent
f081c1a756
commit
32c38bc249
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue