File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/com/somemore/volunteer/controller Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments