Skip to content

Commit

Permalink
Merge pull request #222 from silinternational/feature/enable-modules
Browse files Browse the repository at this point in the history
enable saml, core, and admin modules in all config files
  • Loading branch information
briskt authored Jun 14, 2024
2 parents 927772e + 0a5503c commit 2860f3c
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 4 deletions.
3 changes: 3 additions & 0 deletions development/idp-local/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,9 @@
*/

'module.enable' => [
'saml' => true,
'core' => true,
'admin' => true,
'expirychecker' => true,
'material' => true,
'mfa' => true,
Expand Down
3 changes: 3 additions & 0 deletions development/idp2-local/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,9 @@
*/

'module.enable' => [
'saml' => true,
'core' => true,
'admin' => true,
'expirychecker' => true,
'material' => true,
'mfa' => true,
Expand Down
6 changes: 5 additions & 1 deletion development/idp3-local/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion development/sp-local/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion development/sp2-local/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion development/sp3-local/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions dockerbuild/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,9 @@
*/

'module.enable' => [
'saml' => true,
'core' => true,
'admin' => true,
'expirychecker' => true,
'material' => true,
'mfa' => true,
Expand Down

0 comments on commit 2860f3c

Please sign in to comment.