0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Cleaned up comments controller

no-issue

This removes some redundant calls to `get` and makes refactoring
easier in future.
This commit is contained in:
Fabien O'Carroll 2024-02-28 12:12:35 -05:00 committed by Fabien 'egg' O'Carroll
parent 001f2b0b91
commit 4c6f7715ef

View file

@ -92,7 +92,7 @@ module.exports = class CommentsController {
const postId = result?.get('post_id');
if (postId) {
frame.setHeader('X-Cache-Invalidate', `/api/members/comments/post/${result.get('post_id')}/`);
frame.setHeader('X-Cache-Invalidate', `/api/members/comments/post/${postId}/`);
}
return result;
@ -124,7 +124,7 @@ module.exports = class CommentsController {
const postId = result?.get('post_id');
if (postId) {
frame.setHeader('X-Cache-Invalidate', `/api/members/comments/post/${result.get('post_id')}/`);
frame.setHeader('X-Cache-Invalidate', `/api/members/comments/post/${postId}/`);
}
return result;