Skip to content

Commit

Permalink
fix: 유저 정보 조회 return 값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
wjdtkdgns committed Jun 1, 2024
1 parent 8bd1fea commit ac4225a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class UserFacade(
private val userService: UserService,
private val txTemplates: TransactionTemplates,
) {
suspend fun getUserInfo(user: AuthUser) {
suspend fun getUserInfo(user: AuthUser): GetUserInfoResponse {
return userService.findByIdOrThrow(user.uid)
.let { user -> GetUserInfoResponse(UserModel.from(user)) }
}
Expand Down

0 comments on commit ac4225a

Please sign in to comment.