Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions app/Access/Saml2Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ public function logout(User $user): array
[],
$user->email,
$sessionIndex,
true,
Constants::NAMEID_EMAIL_ADDRESS
true
);
$id = $toolKit->getLastRequestID();
} catch (Error $error) {
Expand Down
2 changes: 1 addition & 1 deletion app/Config/saml2.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
// Specifies constraints on the name identifier to be used to
// represent the requested subject.
// Take a look on lib/Saml2/Constants.php to see the NameIdFormat supported
'NameIDFormat' => 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress',
'NameIDFormat' => 'urn:oasis:names:tc:SAML:2.0:nameid-format:persistent',

// Usually x509cert and privateKey of the SP are provided by files placed at
// the certs folder. But we can also provide them with the following parameters
Expand Down