Skip to content

Commit

Permalink
Merge pull request #88 from 0702Yoon/main
Browse files Browse the repository at this point in the history
chore : 유저 상세 조회 url 변경
  • Loading branch information
0702Yoon authored Aug 14, 2024
2 parents e501fe9 + 7f4f419 commit 18fc3f0
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public interface MemberController {
@Operation(summary = "test용", description = "현재는 로그인 멤버의 AffiliationRoleLost를 가져오는 값")
ResponseEntity<com.example.bigbrotherbe.global.exception.response.ApiResponse<AffiliationListDto>> test();

@GetMapping
@GetMapping("/member-information")
@Operation(summary = "유저 상세 정보 조회")
ResponseEntity<com.example.bigbrotherbe.global.exception.response.ApiResponse<MemberInfoResponse>> inquireMemberInfo();

Expand Down Expand Up @@ -93,4 +93,9 @@ public interface MemberController {
@PatchMapping("/information")
@Operation(summary = "유저 상세 정보 변경")
ResponseEntity<com.example.bigbrotherbe.global.exception.response.ApiResponse<MemberInfoResponse>> changeMemberInfo(@RequestBody MemberInfoChangeRequest memberInfoChangeRequest);

@GetMapping()
@Operation(summary = "유저 전체 조회")
ResponseEntity<com.example.bigbrotherbe.global.exception.response.ApiResponse<List<MemberInfoResponse>>> inquireAllUserInfo();

}

0 comments on commit 18fc3f0

Please sign in to comment.