RENAME: api --> services

This commit is contained in:
syuilo 2018-04-06 03:10:25 +09:00
parent 0de40f3a76
commit b6aeacdeb9
14 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,26 @@
import * as mongodb from 'mongodb';
import Watching from '../../models/post-watching';
export default async (me: mongodb.ObjectID, post: object) => {
// 自分の投稿はwatchできない
if (me.equals((post as any).userId)) {
return;
}
// if watching now
const exist = await Watching.findOne({
postId: (post as any)._id,
userId: me,
deletedAt: { $exists: false }
});
if (exist !== null) {
return;
}
await Watching.insert({
createdAt: new Date(),
postId: (post as any)._id,
userId: me
});
};