fix(agenda): Handle .html agenda suffix in Vue router (#4589)

This commit is contained in:
Nicolas Giard 2022-10-17 10:54:14 -04:00 committed by GitHub
parent 67e0d74a20
commit 9194632cec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 => {