Skip to content

Commit

Permalink
#147 Refactor: 로그인 시 멤버 아이디 반환
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-haeseung committed Aug 11, 2024
1 parent e058723 commit 6cfff1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ public ApiResponse<MemberResponseDTO.MemberTokenResponseDTO> login(MemberRequest
.email(getMember.getEmail())
.nickname(getMember.getNickname())
.tokenInfo(tokenInfo)
.memberId(getMember.getMemberId())
.build());
} catch (AuthenticationException e) {
throw new MemberHandler(ErrorStatus.MEMBER_LOGIN_FAIL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public static class MemberTokenResponseDTO {
TokenInfo tokenInfo;
String email;
String nickname;
Long memberId;
}


Expand Down

0 comments on commit 6cfff1e

Please sign in to comment.