From 15d33a242f10e9e0f780f84b2381a954a2c18562 Mon Sep 17 00:00:00 2001 From: Donghoon Jeong <112836685+jjeongdong@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:29:55 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EC=BD=94=EB=93=9C=20=EB=A6=AC?= =?UTF-8?q?=EB=B7=B0=EC=97=90=20=EB=8C=80=ED=95=9C=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../naoman/domain/photo/controller/PhotoController.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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