Diff

core/usermanager.lua @ 10635:675d9fbcbaed

mod_authz_internal, usermanager: Rename to mod_authz_config
author Matthew Wild <mwild1@gmail.com>
date Mon, 27 Jan 2020 22:28:52 +0000
parent 10634:c9e1cb7a38b8
child 10640:5622eda7c5c5
line wrap: on
line diff
--- a/core/usermanager.lua	Mon Jan 27 22:09:19 2020 +0000
+++ b/core/usermanager.lua	Mon Jan 27 22:28:52 2020 +0000
@@ -56,7 +56,7 @@
 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;