diff --git a/src/main/java/com/umc/naoman/domain/photo/controller/PhotoController.java b/src/main/java/com/umc/naoman/domain/photo/controller/PhotoController.java index a2e5ac8..bb7e941 100644 --- a/src/main/java/com/umc/naoman/domain/photo/controller/PhotoController.java +++ b/src/main/java/com/umc/naoman/domain/photo/controller/PhotoController.java @@ -144,8 +144,8 @@ public ResultResponse getPhotoDownloadUrlList(@Request public ResultResponse getPhotoDownloadUrlListByProfile(@RequestParam Long shareGroupId, @RequestParam Long profileId, @LoginMember Member member) { - PhotoResponse.PhotoDownloadUrlListInfo photoEsDownloadUrlList = photoService.getPhotoDownloadUrlListByProfile(shareGroupId, profileId, member); - return ResultResponse.of(DOWNLOAD_PHOTO, photoEsDownloadUrlList); + PhotoResponse.PhotoDownloadUrlListInfo photoDownloadUrlList = photoService.getPhotoDownloadUrlListByProfile(shareGroupId, profileId, member); + return ResultResponse.of(DOWNLOAD_PHOTO, photoDownloadUrlList); } @GetMapping("/download/etc") @@ -155,8 +155,8 @@ public ResultResponse getPhotoDownloadUrlListByProfile }) public ResultResponse getEtcPhotoDownloadUrlList(@RequestParam Long shareGroupId, @LoginMember Member member) { - PhotoResponse.PhotoDownloadUrlListInfo photoEsDownloadUrlList = photoService.getEtcPhotoDownloadUrlList(shareGroupId, member); - return ResultResponse.of(DOWNLOAD_PHOTO, photoEsDownloadUrlList); + PhotoResponse.PhotoDownloadUrlListInfo photoDownloadUrlList = photoService.getEtcPhotoDownloadUrlList(shareGroupId, member); + return ResultResponse.of(DOWNLOAD_PHOTO, photoDownloadUrlList); } @DeleteMapping