diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-01-27 22:28:52 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-01-27 22:28:52 +0000 |
commit | 67382277df7bbd9b286c1cdd477b15b2cfb5455d (patch) | |
tree | 263b9d0ef37db4820e8151228c398f2533c68cbc /core | |
parent | e4fad868df95526bb0637457559fca9ef80426a6 (diff) | |
download | prosody-67382277df7bbd9b286c1cdd477b15b2cfb5455d.tar.gz prosody-67382277df7bbd9b286c1cdd477b15b2cfb5455d.zip |
mod_authz_internal, usermanager: Rename to mod_authz_config
Diffstat (limited to 'core')
-rw-r--r-- | core/usermanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua index 47d157bf..4a1e18f9 100644 --- a/core/usermanager.lua +++ b/core/usermanager.lua @@ -56,7 +56,7 @@ local provider_mt = { __index = new_null_provider() }; local function initialize_host(host) local host_session = hosts[host]; - local authz_provider_name = config.get(host, "authorization") or "internal"; + local authz_provider_name = config.get(host, "authorization") or "config"; local authz_mod = modulemanager.load(host, "authz_"..authz_provider_name); host_session.authz = authz_mod or global_authz_provider; |