mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.usermanager: Implement noop role writes on global authz provider
So that the methods are there and don't cause an error.
This commit is contained in:
parent
9f2249b3db
commit
a3c82c5d02
1 changed files with 2 additions and 0 deletions
|
@ -54,6 +54,8 @@ local global_authz_provider = {
|
|||
if role ~= "prosody:admin" then return {}; end
|
||||
return it.to_array(global_admins);
|
||||
end;
|
||||
set_user_roles = function (user, roles) end; -- luacheck: ignore 212
|
||||
set_jid_roles = function (jid, roles) end; -- luacheck: ignore 212
|
||||
};
|
||||
|
||||
local provider_mt = { __index = new_null_provider() };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue