wip
This commit is contained in:
parent
9357fe6f93
commit
7bf4f39c44
1 changed files with 16 additions and 13 deletions
|
@ -264,6 +264,8 @@ module.exports = (params, user: IUser, app) => new Promise(async (res, rej) => {
|
|||
publishChannelStream(channel._id, 'post', postObj);
|
||||
}
|
||||
|
||||
// TODO
|
||||
if (!channel) {
|
||||
// Fetch all followers
|
||||
const followers = await Following
|
||||
.find({
|
||||
|
@ -278,6 +280,7 @@ module.exports = (params, user: IUser, app) => new Promise(async (res, rej) => {
|
|||
// Publish event to followers stream
|
||||
followers.forEach(following =>
|
||||
event(following.follower_id, 'post', postObj));
|
||||
}
|
||||
|
||||
// Increment my posts count
|
||||
User.update({ _id: user._id }, {
|
||||
|
|
Loading…
Reference in a new issue