Fix bug
This commit is contained in:
		
							parent
							
								
									69662e24c3
								
							
						
					
					
						commit
						8c72e011d2
					
				
					 1 changed files with 7 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -1,6 +1,7 @@
 | 
			
		|||
import { EntityRepository, Repository } from 'typeorm';
 | 
			
		||||
import { UserList } from '../entities/user-list';
 | 
			
		||||
import { ensure } from '../../prelude/ensure';
 | 
			
		||||
import { UserListJoinings } from '..';
 | 
			
		||||
 | 
			
		||||
@EntityRepository(UserList)
 | 
			
		||||
export class UserListRepository extends Repository<UserList> {
 | 
			
		||||
| 
						 | 
				
			
			@ -9,9 +10,14 @@ export class UserListRepository extends Repository<UserList> {
 | 
			
		|||
	) {
 | 
			
		||||
		const userList = typeof src === 'object' ? src : await this.findOne(src).then(ensure);
 | 
			
		||||
 | 
			
		||||
		const users = await UserListJoinings.find({
 | 
			
		||||
			userListId: userList.id
 | 
			
		||||
		});
 | 
			
		||||
 | 
			
		||||
		return {
 | 
			
		||||
			id: userList.id,
 | 
			
		||||
			name: userList.name
 | 
			
		||||
			name: userList.name,
 | 
			
		||||
			userIds: users.map(x => x.userId)
 | 
			
		||||
		};
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue