mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
core.usermanager: Add missing stub authz methods to global authz provider
Except, should we have a global authz provider at all?
This commit is contained in:
parent
cdd5608f4a
commit
a88c982ae2
1 changed files with 7 additions and 0 deletions
|
@ -54,6 +54,13 @@ local global_authz_provider = {
|
|||
end;
|
||||
set_user_roles = function (user, roles) end; -- luacheck: ignore 212
|
||||
set_jid_roles = function (jid, roles) end; -- luacheck: ignore 212
|
||||
|
||||
get_user_default_role = function (user) end; -- luacheck: ignore 212
|
||||
get_users_with_role = function (role_name) end; -- luacheck: ignore 212
|
||||
get_jid_role = function (jid) end; -- luacheck: ignore 212
|
||||
set_jid_role = function (jid) end; -- luacheck: ignore 212
|
||||
add_default_permission = function (role_name, action, policy) end; -- luacheck: ignore 212
|
||||
get_role_info = function (role_name) end; -- luacheck: ignore 212
|
||||
};
|
||||
|
||||
local provider_mt = { __index = new_null_provider() };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue