From c5b6dabd07e33ae7972300caf260b690d27db8cd Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 1 Nov 2017 13:20:55 +0900 Subject: [PATCH] wip --- src/api/endpoints/posts/create.ts | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/src/api/endpoints/posts/create.ts b/src/api/endpoints/posts/create.ts index e1138c3ed..360b5df0d 100644 --- a/src/api/endpoints/posts/create.ts +++ b/src/api/endpoints/posts/create.ts @@ -264,20 +264,23 @@ module.exports = (params, user: IUser, app) => new Promise(async (res, rej) => { publishChannelStream(channel._id, 'post', postObj); } - // Fetch all followers - const followers = await Following - .find({ - followee_id: user._id, - // 削除されたドキュメントは除く - deleted_at: { $exists: false } - }, { - follower_id: true, - _id: false - }); + // TODO + if (!channel) { + // Fetch all followers + const followers = await Following + .find({ + followee_id: user._id, + // 削除されたドキュメントは除く + deleted_at: { $exists: false } + }, { + follower_id: true, + _id: false + }); - // Publish event to followers stream - followers.forEach(following => - event(following.follower_id, 'post', postObj)); + // Publish event to followers stream + followers.forEach(following => + event(following.follower_id, 'post', postObj)); + } // Increment my posts count User.update({ _id: user._id }, {