mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
authz: Add method for retrieving all roles
Some of the OAuth stuff highlights a small need to retrieve a list of roles somehow. Handy if you ever need a role selector in adhoc or something. Unless there's some O(n) thing we were avoiding?
This commit is contained in:
parent
7b7cad2b66
commit
4d46c27840
2 changed files with 11 additions and 0 deletions
|
@ -280,6 +280,10 @@ function get_role_by_name(role_name)
|
|||
return assert(role_registry[role_name], role_name);
|
||||
end
|
||||
|
||||
function get_all_roles()
|
||||
return role_registry;
|
||||
end
|
||||
|
||||
-- COMPAT: Migrate from 0.12 role storage
|
||||
local function do_migration(migrate_host)
|
||||
local old_role_store = assert(module:context(migrate_host):open_store("roles"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue