Skip to content
Snippets Groups Projects
Commit 7646934f authored by John Franklin's avatar John Franklin
Browse files

Issue #3383791 by John Franklin: Add alterLogoutRedirectionQuery() to fix up...

Issue #3383791 by John Franklin: Add alterLogoutRedirectionQuery() to fix up the parameters set to Login.gov.
parent 4be5ba3a
Branches 1.x
Tags
No related merge requests found
Pipeline #482774 passed with warnings
......@@ -360,4 +360,14 @@ class OpenIDConnectLoginGovClient extends OpenIDConnectClientBase {
return array_values(array_unique(array_intersect_key(static::$fieldToScopeMap, $fields)));
}
/**
* {@inheritdoc}
*/
public function alterLogoutRedirectionQuery(array $query): array {
unset($query['id_token_hint']);
$query['client_id'] = $this->configuration['client_id'];
return $query;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment