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:
Kim Alvefur 2023-03-04 18:40:43 +01:00
parent 7b7cad2b66
commit 4d46c27840
2 changed files with 11 additions and 0 deletions

View file

@ -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"));