@@ -30,29 +30,29 @@ public class UserCommandController {
3030
3131 @ Secured ("ROLE_VOLUNTEER" )
3232 @ PutMapping ("/basic-info/volunteer" )
33- @ Operation (summary = "봉사자 기본 정보 업데이트 " , description = "봉사자의 기본 정보를 업데이트합니다 ." )
33+ @ Operation (summary = "봉사자 기본 정보 수정 " , description = "봉사자의 기본 정보를 수정합니다 ." )
3434 public ApiResponse <String > updateBasicInfo (
3535 @ UserId UUID userId ,
3636 @ Valid @ RequestBody VolunteerBasicInfoRequestDto volunteerBasicInfoRequestDto
3737 ) {
3838 updateBasicInfoUseCase .update (userId , volunteerBasicInfoRequestDto );
39- return ApiResponse .ok ("봉사자 기본 정보 업데이트 완료" );
39+ return ApiResponse .ok ("봉사자 기본 정보 수정 완료" );
4040 }
4141
4242 @ Secured ("ROLE_CENTER" )
4343 @ PutMapping ("/basic-info/center" )
44- @ Operation (summary = "센터 기본 정보 업데이트 " , description = "센터의 기본 정보를 업데이트합니다 ." )
44+ @ Operation (summary = "센터 기본 정보 수정 " , description = "센터의 기본 정보를 수정합니다 ." )
4545 public ApiResponse <String > updateBasicInfo (
4646 @ UserId UUID userId ,
4747 @ Valid @ RequestBody CenterBasicInfoRequestDto centerBasicInfoRequestDto
4848 ) {
4949 updateBasicInfoUseCase .update (userId , centerBasicInfoRequestDto );
50- return ApiResponse .ok ("센터 기본 정보 업데이 완료" );
50+ return ApiResponse .ok ("센터 기본 정보 수정 완료" );
5151 }
5252
5353 @ Secured ("ROLE_VOLUNTEER, ROLE_CENTER" )
5454 @ PutMapping ("/image/volunteer" )
55- @ Operation (summary = "유저 프로필 이미지 업데이트 " , description = "프로필 이미지를 수정합니다. 응답으로 제공되는 URL에 이미지를 PUT 해야 합니다." )
55+ @ Operation (summary = "유저 프로필 이미지 수정 " , description = "프로필 이미지를 수정합니다. 응답으로 제공되는 URL에 이미지를 PUT 해야 합니다." )
5656 public ApiResponse <String > updateVolunteerImage (
5757 @ UserId UUID userId ,
5858 @ Valid @ RequestBody ImgUrlRequestDto imgUrlRequestDto
0 commit comments