Merge branch 'fix' into 'develop'

update EasyCheck URL in environment configuration

See merge request easy-solutions/apps/easyportal!40
This commit is contained in:
Mathis Buchet 2026-02-27 10:48:39 +00:00
commit 443c7d67b3
1 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,8 @@ class LogoutSubscriber implements EventSubscriberInterface
public function onLogout(LogoutEvent $event): void
{
$easycheckLogoutUrl = $this->easycheckUrl . '/logout';
// Ajouter un paramètre pour indiquer à EasyCheck de revenir au portail après logout
$easycheckLogoutUrl = $this->easycheckUrl . '/logout?redirect_to=portal';
$this->logger->info('LogoutSubscriber triggered - redirecting to EasyCheck logout', [
'easycheck_logout_url' => $easycheckLogoutUrl,