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:
Kim Alvefur 2021-12-06 22:38:27 +01:00
parent 9f2249b3db
commit a3c82c5d02

View file

@ -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() };