Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2022-06-01 14:39:25 +0300
committerGitHub <noreply@github.com>2022-06-01 14:39:25 +0300
commitc91a6782930e7310cd32463622d584e1f7b66c7a (patch)
tree6d8f61f65cc91e441ffa122114165e431cc0da0e
parentfa00969c926db2e08fa8dea9d02818fece7e8d9f (diff)
parent24553b466a145a65a6b3edefe9a7532302196767 (diff)
Merge pull request #619 from KoffeinKaio/fix-idpValueZero
fix routes to use 1 as default value for idp
-rw-r--r--appinfo/routes.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 8e04e946..66057f98 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -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',