Skip to content

Commit

Permalink
style : 라인 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
Due-IT committed Oct 2, 2024
1 parent 941beac commit 15eb6c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public ResponseEntity<RecommendedRecipeResponse> getRecipeDetail(@PathVariable("
@PostMapping("/{userId}")
@Operation(summary = "추천 레시피 카테고리 변경", description = "추천 레시피 카테고리를 변경하고 새로운 추천 레시피를 받아옵니다.")
public ResponseEntity<String> changeRecipeCategory(@PathVariable("userId") Long userId,
@RequestParam(defaultValue = "전체") RecipeCategory recipeCategory) {
@RequestParam(defaultValue = "전체") RecipeCategory recipeCategory) {
recipeService.changeRecipeCategory(userId, recipeCategory);
return new ResponseEntity<>("카테고리에 맞게 추천 레시피목록이 변경되었습니다.", HttpStatus.OK);
}
Expand Down

0 comments on commit 15eb6c9

Please sign in to comment.