Moving the storage of referrer information to main authorization check instead of doing it in the authentication source

Signed-off-by: Ralph Krimmel <rkrimme1@gwdg.de>
This commit is contained in:
Ralph Krimmel 2019-11-28 10:59:59 +01:00
parent 3e8cf5778f
commit e0a8872742
2 changed files with 5 additions and 5 deletions

View file

@ -6,6 +6,8 @@ module.exports = {
if (req.user) {
responseError(res, '403', 'Forbidden', 'oh no.')
} else {
if (!req.session) req.session = {}
req.session.returnTo = req.originalUrl || config.serverUrl + '/';
req.flash('error', 'You are not allowed to access this page. Maybe try logging in?')
res.redirect(config.serverURL + '/')
}