Skip to content

Commit

Permalink
[MERGE] feat/#304 -> dev
Browse files Browse the repository at this point in the history
[FEAT] PreSignedUrl 발급 API의 쿼리파라미터 네이밍 snake로 변경
  • Loading branch information
sung-silver committed Jan 13, 2025
2 parents 66df718 + 3f8582e commit 2fa4bd8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ public ResponseEntity<BaseResponse<?>> getExternalBanners(
@Override
@GetMapping("/img/pre-signed")
public ResponseEntity<BaseResponse<?>> getIssuedPreSignedUrlForPutImage(
@RequestParam("content-name") String contentName,
@RequestParam("image-type") String imageType,
@RequestParam("image-extension") String imageExtension,
@RequestParam("content-type") String contentType
@RequestParam("content_name") String contentName,
@RequestParam("image_type") String imageType,
@RequestParam("image_extension") String imageExtension,
@RequestParam("content_type") String contentType
) {
val response = bannerService.getIssuedPreSignedUrlForPutImage(contentName, imageType,
imageExtension, contentType);
Expand Down

0 comments on commit 2fa4bd8

Please sign in to comment.