mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_tokenauth: Add API method to revoke a grant by id
We probably want to refactor revoke_token() to use this one in the future.
This commit is contained in:
parent
e49554a422
commit
fb35ec60a3
1 changed files with 7 additions and 0 deletions
|
@ -278,6 +278,13 @@ function revoke_token(token)
|
|||
return true;
|
||||
end
|
||||
|
||||
function revoke_grant(username, grant_id)
|
||||
local ok, err = token_store:set_key(username, grant_id, nil);
|
||||
if not ok then return nil, err; end
|
||||
module:fire_event("token-grant-revoked", { id = grant_id, username = username, host = module.host });
|
||||
return true;
|
||||
end
|
||||
|
||||
function sasl_handler(auth_provider, purpose, extra)
|
||||
return function (sasl, token, realm, _authzid)
|
||||
local token_info, err = get_token_info(token);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue