MNTOR-1512 - backwards-compatibility with breach query (#2967)
This commit is contained in:
Родитель
e766298bde
Коммит
bbe342ab6b
|
@ -11,6 +11,12 @@ function landingPage (req, res) {
|
||||||
nonce: res.locals.nonce
|
nonce: res.locals.nonce
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Backward-compatibility with Monitor V1, for SEO.
|
||||||
|
if (req.query.breach) {
|
||||||
|
const breach = encodeURIComponent(req.query.breach)
|
||||||
|
return res.redirect(`/breach-details/${breach}`)
|
||||||
|
}
|
||||||
|
|
||||||
res.send(guestLayout(data))
|
res.send(guestLayout(data))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче