mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_authz_internal: add support for setting roles of a local user
This commit is contained in:
parent
6f0532b89f
commit
03d38b2a67
1 changed files with 8 additions and 1 deletions
|
@ -12,6 +12,11 @@ function get_user_roles(user)
|
|||
return role_store:get(user);
|
||||
end
|
||||
|
||||
function set_user_roles(user, roles)
|
||||
role_store:set(user, roles)
|
||||
return true;
|
||||
end
|
||||
|
||||
function get_jid_roles(jid)
|
||||
if admin_jids:contains(jid) then
|
||||
return admin_role;
|
||||
|
@ -19,4 +24,6 @@ function get_jid_roles(jid)
|
|||
return nil;
|
||||
end
|
||||
|
||||
|
||||
function set_jid_roles(jid)
|
||||
return false;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue