Skip to content

Commit

Permalink
Merge pull request #79 from depromeet/dev
Browse files Browse the repository at this point in the history
🔨 fix(user) : 유저 정보 조회시에 룸 정보에 위치 정보 select 추가
  • Loading branch information
ImNM authored Jun 5, 2022
2 parents 5d2afcd + aeca7aa commit 0e10d40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/apis/users/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export class UserService {
if (!user) {
throw new InternalServerErrorException('잘못된 접근');
}
console.log(user);
return user;
}

Expand Down
1 change: 1 addition & 0 deletions src/repositories/user.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export class UserRepository {
_id: 1,
name: 1,
category: 1,
geometry: 1,
userCount: { $size: '$userList' },
},
})
Expand Down

0 comments on commit 0e10d40

Please sign in to comment.