Skip to content

Commit

Permalink
fix: 내 회원 정보를 조회하는 컨트롤러단 메소드명 역할에 맞게 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
bflykky committed Aug 5, 2024
1 parent 07cf92a commit 0175d0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public ResultResponse<MemberInfo> getMemberInfo(@PathVariable(name = "memberId")

@GetMapping("/my")
@Operation(summary = "내 회원정보 조회 API", description = "자신의 회원 정보를 조회하는 API입니다.")
public ResultResponse<MemberInfo> checkSignup(@LoginMember Member member) {
public ResultResponse<MemberInfo> getMyInfo(@LoginMember Member member) {
return ResultResponse.of(CHECK_MEMBER_REGISTRATION, memberService.getMyInfo(member));
}

Expand Down

0 comments on commit 0175d0d

Please sign in to comment.