Skip to content

Commit

Permalink
refactor: remove unnecessary parentheses in @PostMapping annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
gmkim20713 committed Jun 20, 2024
1 parent 4f88d54 commit 0f31efc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Flux<AlbumResponse> getAlbums(
);

@Operation(summary = "์•จ๋ฒ” ์ƒ์„ฑ", description = "์•จ๋ฒ”์„ ์ƒ์„ฑํ•ฉ๋‹ˆ๋‹ค.")
@PostMapping("")
@PostMapping
Mono<AlbumResponse> createAlbum(
@RequestBody
AlbumCreateRequest request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Flux<PhotoResponse> getAlbumPhotos(
);

@Operation(summary = "์‚ฌ์ง„ ์ƒ์„ฑ", description = "์‚ฌ์ง„์„ ์ƒ์„ฑํ•ฉ๋‹ˆ๋‹ค.")
@PostMapping("")
@PostMapping
Mono<PhotoResponse> createPhoto(
@RequestBody
PhotoCreateRequest request
Expand Down

0 comments on commit 0f31efc

Please sign in to comment.