Software /
code /
prosody
Changeset
12657:1ab845e80fe7
usermanager: Fix method name of global authz provider (thanks Zash)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 12 Aug 2022 11:58:25 +0100 |
parents | 12656:af315e5b71f0 |
children | 12658:7ca5645f46cd |
files | core/usermanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/usermanager.lua Thu Aug 11 16:56:59 2022 +0100 +++ b/core/usermanager.lua Fri Aug 12 11:58:25 2022 +0100 @@ -55,7 +55,7 @@ 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 + get_role_by_name = function (role_name) end; -- luacheck: ignore 212 }; local provider_mt = { __index = new_null_provider() };