Skip to content

Commit

Permalink
[Server] fix : 레시피 카테고리 이름 수정 (#67)
Browse files Browse the repository at this point in the history
* fix(AiRecipeRecommendClient) : 전체 카테고리에서 레시피를 추천 받는다

- 재료 추가/삭제시, 전체 카테고리 기준으로 레시피를 추천 받습니다.
- 카테고리를 특정하여 레시피를 추천받는 ai측 api와 카테고리를 지정하지 않고 레시피를 추천 받는 api가 다름에 따라, 메서드를 분리하였습니다.

* fix(RecipeCategory) : 카테고리 AI에 맞게 수정
  • Loading branch information
Due-IT authored Nov 24, 2024
1 parent 0279c24 commit faa614d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public enum RecipeCategory {
양식(1, "양식"),
샐러드(1, "샐러드"),
스프(1, "스프"),
빵_과자(1, "빵/과자"),
과자_간식(1, "과자/간식"),
(1, "빵"),
과자(1, "과자"),
차_음료_술(1, "차/음료/술"),
일상(2, "일상"),
초스피드(2, "초스피드"),
Expand All @@ -29,7 +29,7 @@ public enum RecipeCategory {
야식(2, "야식"),
푸드스타일링(2, "푸드스타일링"),
해장(2, "해장"),
명절음식(2, "명절음식"),
명절(2, "명절"),
이유식(2, "이유식"),
기타(2, "기타");

Expand Down

0 comments on commit faa614d

Please sign in to comment.