Skip to content

Commit daac8ef

Browse files
committed
feat(VolunteerQueryController): 성공 메시지 변경
1 parent 7036367 commit daac8ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/somemore/volunteer/controller/VolunteerQueryController.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public ApiResponse<VolunteerResponseDto> getMyProfile(
3434
return ApiResponse.ok(
3535
200,
3636
volunteerQueryUseCase.getMyProfile(UUID.fromString(volunteerId)),
37-
"프로필 조회 성공");
37+
"본인 상세 프로필 조회 성공");
3838
}
3939

4040
@GetMapping("/{volunteerId}")
@@ -45,21 +45,21 @@ public ApiResponse<VolunteerResponseDto> getVolunteerProfile(
4545
return ApiResponse.ok(
4646
200,
4747
volunteerQueryUseCase.getVolunteerProfile(volunteerId),
48-
"프로필 조회 성공"
48+
"타인 프로필 조회 성공"
4949
);
5050
}
5151

5252
@GetMapping("/{volunteerId}/detailed")
5353
@Secured("ROLE_CENTER")
54-
@Operation(summary = "타인 상세 프로필 조회", description = "기관이 작성한 모집 글에 지원한 봉사자의 상세 프로필을 조회합니다.")
54+
@Operation(summary = "지원자 상세 프로필 조회", description = "기관이 작성한 모집 글에 지원한 봉사자의 상세 프로필을 조회합니다.")
5555
public ApiResponse<VolunteerResponseDto> getVolunteerDetailedProfile(
5656
@PathVariable UUID volunteerId,
5757
@AuthenticationPrincipal String centerId) {
5858

5959
return ApiResponse.ok(
6060
200,
6161
volunteerQueryUseCase.getVolunteerDetailedProfile(volunteerId, UUID.fromString(centerId)),
62-
"프로필 조회 성공"
62+
"지원자 상세 프로필 조회 성공"
6363
);
6464
}
6565
}

0 commit comments

Comments
 (0)