Add createdAt property
This commit is contained in:
		
							parent
							
								
									c666a2b26e
								
							
						
					
					
						commit
						76efc03963
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
					@ -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
 | 
				
			||||||
		})),
 | 
							})),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue