fix: set no-store cache control on jwt renew response

This commit is contained in:
Nicolas Giard
2024-05-23 23:01:38 -04:00
committed by GitHub
parent 1238d614e1
commit 904260fd44

View File

@@ -156,6 +156,9 @@ module.exports = {
} else {
res.cookie('jwt', newToken.token, { expires: DateTime.utc().plus({ days: 365 }).toJSDate() })
}
// Avoid caching this response
res.set('Cache-Control', 'no-store')
} catch (errc) {
WIKI.logger.warn(errc)
return next()