Skip to content

Commit

Permalink
[FIX] 씨앗 생성 API 엔드포인트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseul106 committed Jan 4, 2024
1 parent 6e1fc4f commit e685cf2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class SeedController {

private final SeedService seedService;

@PostMapping("/member/{memberId}/cave/{caveId}/seed")
@PostMapping("/cave/{caveId}/seed")
@ResponseStatus(HttpStatus.CREATED)
@Operation(summary = "SeedPost", description = "씨앗 생성 API입니다.")
public ApiResponse<SeedCreateResponseDto> createSeed(@PathVariable("caveId") Long caveId, @Valid @RequestBody SeedCreateRequestDto seedCreateRequestDto) {
Expand Down

0 comments on commit e685cf2

Please sign in to comment.