Skip to content

Commit

Permalink
Docs: API 설명 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ratcomp9992 committed Aug 28, 2024
1 parent aa71322 commit cfc4e7d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public class RecipeController {
private final RecipeService recipeService;

@GetMapping
@Operation(summary = "레시피 조회", description = "조건에 해당하는 레시피 List를 조회합니다.")
@Operation(summary = "레시피 조회",
description = "조건(전체, 카테고리, 검색)에 해당하는 레시피 List를 조회합니다. 각 Query Parameter는 생략이 가능합니다.")
public ResponseEntity<List<RecipeResponse>> getRecipeList(@ModelAttribute RecipeRequest recipeRequest) {
List<RecipeResponse> recipeResponseList = new ArrayList<>();

Expand Down

0 comments on commit cfc4e7d

Please sign in to comment.