Files
FrozenFriendsYume/packages/backend/built/services/user-list/push.js
T
2026-07-26 18:25:37 +09:00

15 lines
580 B
JavaScript

import { publishUserEvent, publishUserListStream } from "../stream.js";
import { UserListJoinings, Users } from "../../models/index.js";
import { genId } from "../../misc/gen-id.js";
export async function pushUserToUserList(target, list) {
await UserListJoinings.insert({
id: genId(),
createdAt: new Date(),
userId: target.id,
userListId: list.id
});
const packed = await Users.pack(target);
publishUserListStream(list.id, "userAdded", packed);
if (list.hideFromHomeTl) publishUserEvent(list.userId, "userHidden", target.id);
}