From b0dc6d820d619597c2355f9223990a7b85e2f27b Mon Sep 17 00:00:00 2001 From: Damien Broqua Date: Fri, 28 Mar 2025 11:02:56 +0100 Subject: [PATCH] =?UTF-8?q?#94=20-=20Page=20affich=C3=A9e=20apr=C3=A8s=20l?= =?UTF-8?q?a=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"); }