mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-19 13:40:37 +01:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
24 lines
701 B
TypeScript
24 lines
701 B
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { UserList } from '@/models/entities/user-list.js';
|
|
import { UserListJoinings } from '../index.js';
|
|
import { Packed } from '@/misc/schema.js';
|
|
|
|
@EntityRepository(UserList)
|
|
export class UserListRepository extends Repository<UserList> {
|
|
public async pack(
|
|
src: UserList['id'] | UserList,
|
|
): Promise<Packed<'UserList'>> {
|
|
const userList = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
|
|
|
const users = await UserListJoinings.find({
|
|
userListId: userList.id,
|
|
});
|
|
|
|
return {
|
|
id: userList.id,
|
|
createdAt: userList.createdAt.toISOString(),
|
|
name: userList.name,
|
|
userIds: users.map(x => x.userId),
|
|
};
|
|
}
|
|
}
|