mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
usermanager: Add get_roles() function
This commit is contained in:
parent
fd3ee50a8c
commit
3fb671e0a3
1 changed files with 7 additions and 1 deletions
|
@ -137,7 +137,7 @@ local function get_provider(host)
|
|||
return hosts[host].users;
|
||||
end
|
||||
|
||||
local function is_admin(jid, host)
|
||||
local function get_roles(jid, host)
|
||||
if host and not hosts[host] then return false; end
|
||||
if type(jid) ~= "string" then return false; end
|
||||
|
||||
|
@ -155,6 +155,11 @@ local function is_admin(jid, host)
|
|||
roles = authz_provider.get_jid_roles(jid);
|
||||
end
|
||||
|
||||
return roles;
|
||||
end
|
||||
|
||||
local function is_admin(jid, host)
|
||||
local roles = get_roles(jid, host);
|
||||
return roles and roles["prosody:admin"];
|
||||
end
|
||||
|
||||
|
@ -170,5 +175,6 @@ return {
|
|||
users = users;
|
||||
get_sasl_handler = get_sasl_handler;
|
||||
get_provider = get_provider;
|
||||
get_roles = get_roles;
|
||||
is_admin = is_admin;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue