mirror of
https://github.com/plankanban/planka.git
synced 2025-12-20 09:15:39 +03:00
fix: Increase browser cache time for attachment files
This commit is contained in:
@@ -86,7 +86,7 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.res.type(attachment.data.mimeType);
|
this.res.type(attachment.data.mimeType);
|
||||||
this.res.set('Cache-Control', 'private, max-age=900'); // TODO: move to config
|
this.res.set('Cache-Control', 'private, max-age=86400, no-transform'); // TODO: move to config
|
||||||
|
|
||||||
return exits.success(readStream);
|
return exits.success(readStream);
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ module.exports = {
|
|||||||
if (!INLINE_MIME_TYPES_SET.has(attachment.data.mimeType) && !attachment.data.image) {
|
if (!INLINE_MIME_TYPES_SET.has(attachment.data.mimeType) && !attachment.data.image) {
|
||||||
this.res.set('Content-Disposition', 'attachment');
|
this.res.set('Content-Disposition', 'attachment');
|
||||||
}
|
}
|
||||||
this.res.set('Cache-Control', 'private, max-age=900'); // TODO: move to config
|
this.res.set('Cache-Control', 'private, max-age=86400, no-transform'); // TODO: move to config
|
||||||
|
|
||||||
return exits.success(readStream);
|
return exits.success(readStream);
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user