Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 가게 및 메뉴 조회 api(페이지네이션 미적용) 추가 #41

Merged
merged 3 commits into from
Nov 17, 2023

Conversation

eckrin
Copy link
Member

@eckrin eckrin commented Nov 17, 2023

📌 Issue number and Link

issue #15

✏️ Summary

가게 및 메뉴 이름 조회 api 추가

🔎 PR Type

What kind of change does this PR introduce?

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Documentation content changes
  • angular.io application / infrastructure changes
  • Other... Please describe:

📚 Other information

페이지네이션 미적용 api

@eckrin
Copy link
Member Author

eckrin commented Nov 17, 2023

    List<FoodDto> foodList = foodRepository.searchByNameOrderBySort(user, pageable, keyword, standard, order)
            .stream().map(f -> new FoodDto(f.getId(), f.getStore().getId(), f.getCategory().getId(), f.getName(), f.getPrice(), f.getDescription(), f.getImage()))
            .collect(Collectors.toList());

@summit45 summit45 merged commit d8121ea into master Nov 17, 2023
1 check failed
@summit45 summit45 deleted the feat/store-1115 branch November 17, 2023 02:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants