This commit is contained in:
こぴなたみぽ
2018-04-12 07:32:35 +09:00
parent 7b05e01819
commit 051ab45181
2 changed files with 34 additions and 0 deletions

View File

@ -18,6 +18,7 @@ import DriveFolder, { deleteDriveFolder } from './drive-folder';
import PollVote, { deletePollVote } from './poll-vote';
import FollowingLog, { deleteFollowingLog } from './following-log';
import FollowedLog, { deleteFollowedLog } from './followed-log';
import SwSubscription, { deleteSwSubscription } from './sw-subscription';
const User = db.get<IUser>('users');
@ -239,6 +240,11 @@ export async function deleteUser(user: string | mongo.ObjectID | IUser) {
await FollowedLog.find({ userId: u._id })
).map(x => deleteFollowedLog(x)));
// このユーザーのSwSubscriptionをすべて削除
await Promise.all((
await SwSubscription.find({ userId: u._id })
).map(x => deleteSwSubscription(x)));
// このユーザーを削除
}