comments working

This commit is contained in:
isUnknown 2025-01-15 14:18:48 +01:00
parent 375bed1d01
commit 0b472988a2
14 changed files with 107 additions and 59 deletions

View file

@ -34,6 +34,24 @@ const routes = [
path: "/projects/:id/extended-brief",
component: Brief,
},
// Redirections
{
path: "/projects/:id/industrial-ideation",
redirect: (to) => {
return (
"/projects/" +
to.params.id +
"?dialog=industrial-ideation&comments=true"
);
},
},
{
path: "/projects/:id/proposal",
redirect: (to) => {
return "/projects/" + to.params.id + "?dialog=proposal&comments=true";
},
},
];
export default routes;