Skip to content

Commit

Permalink
fix : 코드 리뷰에 대한 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jjeongdong committed Aug 12, 2024
1 parent a87383e commit 15d33a2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ public ResultResponse<PhotoDownloadUrlListInfo> getPhotoDownloadUrlList(@Request
public ResultResponse<PhotoDownloadUrlListInfo> 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")
Expand All @@ -155,8 +155,8 @@ public ResultResponse<PhotoDownloadUrlListInfo> getPhotoDownloadUrlListByProfile
})
public ResultResponse<PhotoDownloadUrlListInfo> 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
Expand Down

0 comments on commit 15d33a2

Please sign in to comment.