fix(agenda): Handle .html agenda suffix in Vue router (#4589)
This commit is contained in:
parent
67e0d74a20
commit
9194632cec
|
@ -23,6 +23,12 @@ export default createRouter({
|
|||
}
|
||||
},
|
||||
// -> Redirects
|
||||
{
|
||||
path: '/meeting/:meetingNumber(\\d+)?/agenda.html',
|
||||
redirect: to => {
|
||||
return { name: 'agenda' }
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/meeting/:meetingNumber(\\d+)?/agenda/personalize',
|
||||
redirect: to => {
|
||||
|
|
Loading…
Reference in a new issue