comments working
This commit is contained in:
parent
375bed1d01
commit
0b472988a2
14 changed files with 107 additions and 59 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue