summaryrefslogtreecommitdiff
path: root/src/models/repositories/user-list.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/repositories/user-list.ts')
-rw-r--r--src/models/repositories/user-list.ts55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/models/repositories/user-list.ts b/src/models/repositories/user-list.ts
deleted file mode 100644
index 331c278e6f..0000000000
--- a/src/models/repositories/user-list.ts
+++ /dev/null
@@ -1,55 +0,0 @@
-import { EntityRepository, Repository } from 'typeorm';
-import { UserList } from '@/models/entities/user-list';
-import { UserListJoinings } from '../index';
-import { Packed } from '@/misc/schema';
-
-@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)
- };
- }
-}
-
-export const packedUserListSchema = {
- type: 'object' as const,
- optional: false as const, nullable: false as const,
- properties: {
- id: {
- type: 'string' as const,
- optional: false as const, nullable: false as const,
- format: 'id',
- example: 'xxxxxxxxxx',
- },
- createdAt: {
- type: 'string' as const,
- optional: false as const, nullable: false as const,
- format: 'date-time',
- },
- name: {
- type: 'string' as const,
- optional: false as const, nullable: false as const,
- },
- userIds: {
- type: 'array' as const,
- nullable: false as const, optional: true as const,
- items: {
- type: 'string' as const,
- nullable: false as const, optional: false as const,
- format: 'id',
- }
- },
- },
-};