Merge pull request #619 from KoffeinKaio/fix-idpValueZero

fix routes to use 1 as default value for idp
This commit is contained in:
blizzz 2022-06-01 13:39:25 +02:00 committed by GitHub
commit c91a678293
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,6 +27,9 @@ return [
'name' => 'SAML#login',
'url' => '/saml/login',
'verb' => 'GET',
'defaults' => [
'idp' => 1
],
],
[
'name' => 'SAML#base',
@ -37,11 +40,17 @@ return [
'name' => 'SAML#getMetadata',
'url' => '/saml/metadata',
'verb' => 'GET',
'defaults' => [
'idp' => 1
],
],
[
'name' => 'SAML#assertionConsumerService',
'url' => '/saml/acs',
'verb' => 'POST',
'defaults' => [
'idp' => 1
],
],
[
'name' => 'SAML#singleLogoutService',