From 0a5503cc8bddc37c7d2dd4a79b58b309c1d4d077 Mon Sep 17 00:00:00 2001 From: briskt <3172830+briskt@users.noreply.github.com> Date: Thu, 13 Jun 2024 17:42:13 +0800 Subject: [PATCH] enable saml, core, and admin modules in all config files --- development/idp-local/config/config.php | 3 +++ development/idp2-local/config/config.php | 3 +++ development/idp3-local/config/config.php | 6 +++++- development/sp-local/config/config.php | 6 +++++- development/sp2-local/config/config.php | 6 +++++- development/sp3-local/config/config.php | 6 +++++- dockerbuild/config/config.php | 3 +++ 7 files changed, 29 insertions(+), 4 deletions(-) diff --git a/development/idp-local/config/config.php b/development/idp-local/config/config.php index 8f4ddbd0..53499e06 100644 --- a/development/idp-local/config/config.php +++ b/development/idp-local/config/config.php @@ -588,6 +588,9 @@ */ 'module.enable' => [ + 'saml' => true, + 'core' => true, + 'admin' => true, 'expirychecker' => true, 'material' => true, 'mfa' => true, diff --git a/development/idp2-local/config/config.php b/development/idp2-local/config/config.php index 8f4ddbd0..53499e06 100644 --- a/development/idp2-local/config/config.php +++ b/development/idp2-local/config/config.php @@ -588,6 +588,9 @@ */ 'module.enable' => [ + 'saml' => true, + 'core' => true, + 'admin' => true, 'expirychecker' => true, 'material' => true, 'mfa' => true, diff --git a/development/idp3-local/config/config.php b/development/idp3-local/config/config.php index acf5a0e4..0a98fa6b 100644 --- a/development/idp3-local/config/config.php +++ b/development/idp3-local/config/config.php @@ -256,7 +256,11 @@ * */ - 'module.enable' => [], + 'module.enable' => [ + 'saml' => true, + 'core' => true, + 'admin' => true, + ], /* * This value is the duration of the session in seconds. Make sure that the time duration of diff --git a/development/sp-local/config/config.php b/development/sp-local/config/config.php index ffc30b92..e84acdcd 100644 --- a/development/sp-local/config/config.php +++ b/development/sp-local/config/config.php @@ -291,7 +291,11 @@ * */ - 'module.enable' => [], + 'module.enable' => [ + 'saml' => true, + 'core' => true, + 'admin' => true, + ], /* * This value is the duration of the session in seconds. Make sure that the time duration of diff --git a/development/sp2-local/config/config.php b/development/sp2-local/config/config.php index 47c6507a..11c81c95 100644 --- a/development/sp2-local/config/config.php +++ b/development/sp2-local/config/config.php @@ -291,7 +291,11 @@ * */ - 'module.enable' => [], + 'module.enable' => [ + 'saml' => true, + 'core' => true, + 'admin' => true, + ], /* * This value is the duration of the session in seconds. Make sure that the time duration of diff --git a/development/sp3-local/config/config.php b/development/sp3-local/config/config.php index bbd064a4..b3694cd1 100644 --- a/development/sp3-local/config/config.php +++ b/development/sp3-local/config/config.php @@ -291,7 +291,11 @@ * */ - 'module.enable' => [], + 'module.enable' => [ + 'saml' => true, + 'core' => true, + 'admin' => true, + ], /* * This value is the duration of the session in seconds. Make sure that the time duration of diff --git a/dockerbuild/config/config.php b/dockerbuild/config/config.php index b201ca7a..2c2afa49 100644 --- a/dockerbuild/config/config.php +++ b/dockerbuild/config/config.php @@ -589,6 +589,9 @@ */ 'module.enable' => [ + 'saml' => true, + 'core' => true, + 'admin' => true, 'expirychecker' => true, 'material' => true, 'mfa' => true,