mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-04 06:39:02 +02:00
Merge pull request #19777 from overleaf/bg-issue19430-implement-wiki-caching
support conditional requests for learn wiki images GitOrigin-RevId: fb77ab632c325f88dfed1624a5abad8f2e52ee3d
This commit is contained in:
@@ -297,6 +297,12 @@ webRouter.use(function addNoCacheHeader(req, res, next) {
|
||||
return next()
|
||||
}
|
||||
|
||||
const isWikiContent = /^\/learn(-scripts)?(\/|$)/i.test(req.path)
|
||||
if (isWikiContent) {
|
||||
// don't set no-cache headers on wiki content, as it's immutable and can be cached (publicly)
|
||||
return next()
|
||||
}
|
||||
|
||||
const isLoggedIn = SessionManager.isUserLoggedIn(req.session)
|
||||
if (isLoggedIn) {
|
||||
// always set no-cache headers for authenticated users (apart from project files, above)
|
||||
|
||||
Reference in New Issue
Block a user