1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/patches/sso-logout.patch

14 lines
508 B
Diff
Raw Normal View History

diff --git a/app/controllers/DisconnectController.php b/app/controllers/DisconnectController.php
index 7af0d4b..74f0c61 100644
--- a/app/controllers/DisconnectController.php
+++ b/app/controllers/DisconnectController.php
@@ -13,6 +13,7 @@ class DisconnectController extends Base
Session::dispose();
- $this->redirect('login');
+ $main_domain = exec('cat /etc/yunohost/current_host');
+ header('Location: https://' . $main_domain . '/yunohost/sso/?action=logout');
}
}