This commit is contained in:
syuilo
2021-12-09 23:58:30 +09:00
parent 0abe2dfee0
commit c69b72e199
573 changed files with 3318 additions and 3318 deletions

View File

@@ -18,7 +18,7 @@ export const meta = {
userId: {
validator: $.type(ID),
},
}
},
};
export default define(meta, async (ps, me) => {
@@ -37,7 +37,7 @@ export default define(meta, async (ps, me) => {
}
await Users.update(user.id, {
isSuspended: true
isSuspended: true,
});
insertModerationLog(me, 'suspend', {
@@ -58,12 +58,12 @@ export default define(meta, async (ps, me) => {
async function unFollowAll(follower: User) {
const followings = await Followings.find({
followerId: follower.id
followerId: follower.id,
});
for (const following of followings) {
const followee = await Users.findOne({
id: following.followeeId
id: following.followeeId,
});
if (followee == null) {
@@ -79,6 +79,6 @@ async function readAllNotify(notifier: User) {
notifierId: notifier.id,
isRead: false,
}, {
isRead: true
isRead: true,
});
}