fix routes to use 1 as default value for idp

Signed-off-by: Sascha Markert <markert@b1-systems.de>
This commit is contained in:
Sascha Markert 2022-05-24 14:41:32 +02:00
parent 323c27df0c
commit ecbedfa3d7
No known key found for this signature in database
GPG key ID: B786C7349F5A00C2

View file

@ -27,6 +27,10 @@ return [
'name' => 'SAML#login',
'url' => '/saml/login',
'verb' => 'GET',
'defaults' => [
'idp' => 1
],
],
[
'name' => 'SAML#base',
@ -37,11 +41,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',