From 31a49a8df59eadc8fd21576a54ca0d08ccb785bf Mon Sep 17 00:00:00 2001 From: Thijs Kinkhorst <thijs@kinkhorst.com> Date: Fri, 27 Aug 2021 16:04:05 +0000 Subject: [PATCH] Enable admin module by default for fresh installation --- config-templates/config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config-templates/config.php b/config-templates/config.php index d2459694d..de3dd82d1 100644 --- a/config-templates/config.php +++ b/config-templates/config.php @@ -471,7 +471,7 @@ $config = [ ***********/ /* - * Configuration for enabling/disabling modules. By default the 'core' and 'saml' modules are enabled. + * Configuration for enabling/disabling modules. By default the 'core', 'admin' and 'saml' modules are enabled. * * Example: * @@ -485,6 +485,7 @@ $config = [ 'module.enable' => [ 'exampleauth' => false, 'core' => true, + 'admin' => true, 'saml' => true ], -- GitLab