ensure all install config settings are populated

This commit is contained in:
sbwalker
2025-08-12 15:33:17 -04:00
parent 6142bfc5db
commit eb8ad04557

View File

@ -390,6 +390,8 @@ else
config.DatabaseType = tenant.DBType; config.DatabaseType = tenant.DBType;
config.ConnectionString = tenant.DBConnectionString; config.ConnectionString = tenant.DBConnectionString;
config.IsNewTenant = false; config.IsNewTenant = false;
config.HostEmail = PageState.User.Email;
config.HostName = PageState.User.DisplayName;
} }
} }
@ -403,6 +405,7 @@ else
config.SiteTemplate = _sitetemplatetype; config.SiteTemplate = _sitetemplatetype;
config.RenderMode = _rendermode; config.RenderMode = _rendermode;
config.Runtime = _runtime; config.Runtime = _runtime;
config.Register = false;
ShowProgressIndicator(); ShowProgressIndicator();