987168b863
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
17 lines
458 B
TypeScript
17 lines
458 B
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { UserList } from '../entities/user-list';
|
|
import { ensure } from '../../prelude/ensure';
|
|
|
|
@EntityRepository(UserList)
|
|
export class UserListRepository extends Repository<UserList> {
|
|
public async pack(
|
|
src: UserList['id'] | UserList,
|
|
) {
|
|
const userList = typeof src === 'object' ? src : await this.findOne(src).then(ensure);
|
|
|
|
return {
|
|
id: userList.id,
|
|
name: userList.name
|
|
};
|
|
}
|
|
}
|