From d0699aa9fe6a9a8219c0dcbf392a6850b08bcc43 Mon Sep 17 00:00:00 2001 From: gregcorbett Date: Thu, 3 Feb 2022 16:44:40 +0000 Subject: [PATCH] Re-enable shib by default, disable IAM by default - shib will still be the main SSO usecase for 5.9.0, so I want to have that activiated by default. --- lib/Authentication/MyConfig1.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Authentication/MyConfig1.php b/lib/Authentication/MyConfig1.php index f60f0c23a..5054c41dd 100644 --- a/lib/Authentication/MyConfig1.php +++ b/lib/Authentication/MyConfig1.php @@ -35,8 +35,8 @@ function __construct() { $this->tokenClassList = array(); $this->tokenClassList[] = 'org\gocdb\security\authentication\X509AuthenticationToken'; - $this->tokenClassList[] = 'org\gocdb\security\authentication\IAMAuthToken'; - //$this->tokenClassList[] = 'org\gocdb\security\authentication\ShibAuthToken'; + //$this->tokenClassList[] = 'org\gocdb\security\authentication\IAMAuthToken'; + $this->tokenClassList[] = 'org\gocdb\security\authentication\ShibAuthToken'; //$this->tokenClassList[] = 'org\gocdb\security\authentication\SimpleSamlPhpAuthToken'; //$this->tokenClassList[] = 'org\gocdb\security\authentication\UsernamePasswordAuthenticationToken'; }