Add createdAt property

This commit is contained in:
syuilo 2018-04-03 17:24:28 +09:00
parent c666a2b26e
commit 76efc03963
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,7 @@ export default async ({ data }) => {
// Decrement following count // Decrement following count
User.update({ _id: following.followerId }, { $inc: { followingCount: -1 } }), User.update({ _id: following.followerId }, { $inc: { followingCount: -1 } }),
promisedFollower.then(({ followingCount }) => FollowingLog.insert({ promisedFollower.then(({ followingCount }) => FollowingLog.insert({
createdAt: new Date(),
userId: following.followerId, userId: following.followerId,
count: followingCount - 1 count: followingCount - 1
})), })),
@ -29,6 +30,7 @@ export default async ({ data }) => {
// Decrement followers count // Decrement followers count
User.update({ _id: following.followeeId }, { $inc: { followersCount: -1 } }), User.update({ _id: following.followeeId }, { $inc: { followersCount: -1 } }),
promisedFollowee.then(({ followersCount }) => FollowedLog.insert({ promisedFollowee.then(({ followersCount }) => FollowedLog.insert({
createdAt: new Date(),
userId: following.followeeId, userId: following.followeeId,
count: followersCount - 1 count: followersCount - 1
})), })),