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:
parent
001f2b0b91
commit
4c6f7715ef
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue