From a8e1ff9a00d8544a2a69fe5568ff02b2218112d0 Mon Sep 17 00:00:00 2001 From: Damien Broqua Date: Thu, 13 Mar 2025 11:33:59 +0100 Subject: [PATCH 1/2] Updated footer --- views/index.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/index.ejs b/views/index.ejs index 198ed3a..a14369c 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -258,7 +258,7 @@
Le code source est sous licence GNU GPL-3.0-or-later et disponible sur forge.darkou.fr .
- Fait avec ❤️ à Bordeaux. lmhf + Fait avec ❤️ à Bordeaux depuis 2022 ! lmhf

From b0dc6d820d619597c2355f9223990a7b85e2f27b Mon Sep 17 00:00:00 2001 From: Damien Broqua Date: Fri, 28 Mar 2025 11:02:56 +0100 Subject: [PATCH 2/2] =?UTF-8?q?#94=20-=20Page=20affich=C3=A9e=20apr=C3=A8s?= =?UTF-8?q?=20la=20connexion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/index.js b/src/routes/index.js index 301f25e..910724c 100644 --- a/src/routes/index.js +++ b/src/routes/index.js @@ -57,7 +57,7 @@ router } return res.redirect(url); } - return res.redirect("/"); + return res.redirect("/ma-collection"); } ); @@ -79,7 +79,7 @@ if (registrationOpen) { try { await Auth.register(req); - res.redirect("/"); + res.redirect("/ajouter-un-album"); } catch (err) { res.redirect("/inscription"); }