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

[Team-08 마르코] 메인 페이지 조회, 숙소 조회 및 가격 조회 #52

Open
wants to merge 119 commits into
base: team-08
Choose a base branch
from

Commits on May 17, 2021

  1. Update README.md

    swing-park authored May 17, 2021
    Configuration menu
    Copy the full SHA
    a93ba35 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    swing-park authored May 17, 2021
    Configuration menu
    Copy the full SHA
    f0b5b61 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2021

  1. Configuration menu
    Copy the full SHA
    d5c3454 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0f10ebf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e58df92 View commit details
    Browse the repository at this point in the history
  4. feat: ✨mock api 생성(#5)

    95degree committed May 18, 2021
    Configuration menu
    Copy the full SHA
    74bd412 View commit details
    Browse the repository at this point in the history
  5. feat: ✨CityListResponse 생성(#5)

    도시에 관한 정보를 담기 위해 Wrapper dto생성
    95degree committed May 18, 2021
    Configuration menu
    Copy the full SHA
    f2a1bd6 View commit details
    Browse the repository at this point in the history
  6. feat: ✨ObjectMapper 설정(#5)

    @JsonRootName을 사용하기 위해 objectMapper 설정
    95degree committed May 18, 2021
    Configuration menu
    Copy the full SHA
    8d661f9 View commit details
    Browse the repository at this point in the history
  7. feat: ✨CityListWrapper 로직 생성(#5)

    CityList를 Wrapper로 감싸주기 위해 CityListWrapper를 생성
    95degree committed May 18, 2021
    Configuration menu
    Copy the full SHA
    5788636 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    258783a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    eac7842 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9749e3d View commit details
    Browse the repository at this point in the history

Commits on May 20, 2021

  1. Configuration menu
    Copy the full SHA
    2cb34f4 View commit details
    Browse the repository at this point in the history
  2. feat: ✨ RoomDao 생성(#5)

    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    7419f06 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    24bc774 View commit details
    Browse the repository at this point in the history
  4. feat: ✨ CityDao 생성(#5)

    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    d7e14f9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8478a18 View commit details
    Browse the repository at this point in the history
  6. feat: ✨ findAll 메소드 생성(#5)

    모든 도시의 값을 가져오기 위해 findAll 메소드를 생성
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    199b90f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e156152 View commit details
    Browse the repository at this point in the history
  8. feat: ✨ CityMapper 추가 (#5)

    City 객체 반환을 위해 만든 Mapper를 사용한 로직을 추가
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    d034dc5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    bf85712 View commit details
    Browse the repository at this point in the history
  10. feat: ✨ @EnableAutoConfiguration 제거 (#5)

    dataSource를 추가 해서 실행 하기 위해 어노테이션 제거
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    8c93a1c View commit details
    Browse the repository at this point in the history
  11. feat: ✨ dataSource 추가 (#5)

    - db와의 연결을 위해 dataSource 추가
    - 쿼리문을 보기 위해 logging 설정 추가
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    686e572 View commit details
    Browse the repository at this point in the history
  12. feat: ✨ MainController 추가 (#5)

    - CityDao 의존성 주입
    - 모든 도시의 정보를 찾아오기 위해 readCities() 추가
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    b6f6def View commit details
    Browse the repository at this point in the history
  13. feat: ✨ data.sql 생성 (#5)

    - City(도시정보) INSERT문 작성
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    b17e973 View commit details
    Browse the repository at this point in the history
  14. feat: ✨ CitiesWrapper 생성 (#5)

    - List<City>를 감싸기 위한 Wrapper 클래스
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    4861104 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    d536195 View commit details
    Browse the repository at this point in the history
  16. feat: ✨ CitiesWrapper로 return 변경 (#5)

    - json으로 출력될때 어떤 데이터의 정보인지 알 수 있게 Wrapper로 감싸서 리턴하도록 변경
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    9e7434f View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    7b80010 View commit details
    Browse the repository at this point in the history
  18. feat: ✨Image 도메인 생성(#5)

    - Image의 정보를 담고 있는 도메인
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    349a8ff View commit details
    Browse the repository at this point in the history
  19. feat: ✨Image에 필드 추가(#5)

    - id, url, imageTypeId, ImageClassId를 필드로 추가
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    13964f1 View commit details
    Browse the repository at this point in the history
  20. chore: 🔧Image에 필드 수정(#5)

    - 각 domain에서 Image를 Set으로 관리하기 때문에 ImageClassId 필드 제거
    95degree committed May 20, 2021
    Configuration menu
    Copy the full SHA
    e21fc89 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    47c44ed View commit details
    Browse the repository at this point in the history

Commits on May 21, 2021

  1. feat: ✨CityRequest 생성(#5)

    - 필드에 id, name, image, distance 존재
    - builder 추가
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    73aa177 View commit details
    Browse the repository at this point in the history
  2. feat: ✨Image와 1:N관계 추가(#5)

    - Set으로 관계를 맺음
    - addImage 메소드 추가
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    52becff View commit details
    Browse the repository at this point in the history
  3. feat: ✨ImageType Enum 생성(#5)

    - 이미지의 Type을 효과적으로 관리하기 위해 Enum으로 생성
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    545219a View commit details
    Browse the repository at this point in the history
  4. chore: 🔧테이블 스키마 수정(#5)

    - Image_Type의 기본키를 type컬럼으로 변경
    - Image 테이블의 외래키 수정
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    188301f View commit details
    Browse the repository at this point in the history
  5. chore: 🔧final 추가(#5)

    - 좀 더 확실한 접근제어자를 위해 final 추가
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    89687db View commit details
    Browse the repository at this point in the history
  6. feat: ✨ImagType 필드 추가(#5)

    - Enum으로 선언한 ImageType을 사용하기 위해 필드에 추가
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    a60478b View commit details
    Browse the repository at this point in the history
  7. feat: ✨ImageDao 삭제(#5)

    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    237ac05 View commit details
    Browse the repository at this point in the history
  8. feat: ✨findMainImageUrl 추가(#5)

    - 도시의 메인 이미지를 가져오기 위해 메소드 생성
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    727e434 View commit details
    Browse the repository at this point in the history
  9. feat: ✨CityService 생성(#5)

    - CityDao를 사용한 비즈니스 로직을 담기 위해 CityService 생성
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    a5bfe66 View commit details
    Browse the repository at this point in the history
  10. feat: ✨클래스 명 변경(#5)

    - MainController -> HomeController
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    51ccaee View commit details
    Browse the repository at this point in the history
  11. feat: ✨createAllToRequestList 생성(#5)

    - 모든 도시를 List<CityRequest>로 만들어 주기 위해 메소드 생성
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    df74101 View commit details
    Browse the repository at this point in the history
  12. chore: ✨CityRequest->CityResponse로 메소드명 변경(#5)

    - 요청이 아닌 응답 Dto이므로 메소드 명을 올바르게 정정
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    504f39b View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    1a05ed1 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    a6d9ede View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    f804c57 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    c58f07c View commit details
    Browse the repository at this point in the history
  17. feat: ✨ImageDao 생성(#5)

    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    f668ff5 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    879c03d View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    afac737 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    d156f16 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    4ef35ea View commit details
    Browse the repository at this point in the history
  22. feat: ✨ImageDao 필드 추가(#5)

    - City를 가져올때 image까지 관계 설정 된 City를 불러오기 위해 필드에 ImageDao 추가
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    f7fd327 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    ccb8cca View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    0bcb94e View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    0c31f60 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    aefd982 View commit details
    Browse the repository at this point in the history
  27. feat: ✨CityResponse 빌더 수정(#5)

    -name을 필수매개변수로 변경
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    4abc47f View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    fa4d7fc View commit details
    Browse the repository at this point in the history
  29. feat: ✨findByCategoryId 추가(#5)

    - 카테고리의 List<Image>를 가져오기 위해 메소드 생성
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    41fca98 View commit details
    Browse the repository at this point in the history
  30. feat: ✨CategoriesWrapper 추가(#5)

    - CategoryResponse 리스트를 감싸기 위한 Wrapper 클래스
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    8d7bcce View commit details
    Browse the repository at this point in the history
  31. feat: ✨findByType 추가(#5)

    - 같은 타입의 image를 가져오기 위해 메소드 생성
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    472df89 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    1a44d80 View commit details
    Browse the repository at this point in the history
  33. feat: ✨@JsonProperty 추가(#5)

    - 프론트와 협의한 네임으로 보내주기 위해 JsonProperty 추가
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    f0ccd37 View commit details
    Browse the repository at this point in the history
  34. feat: ✨createAllToCategoriesWrapper 추가(#5)

    - 모든 카테고리를 CategoryResponse로 변환 후 List에 저장
    - List<CategoryResponse>를 감싸고있는 wrapper로 리턴하는 메소드 추가
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    db512f7 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    eddb037 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    a5a212b View commit details
    Browse the repository at this point in the history
  37. feat: ✨MainPageWrapper 생성(#5)

    - Json 루트네임을 표시해 주기 위한 Wrapper
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    08ce917 View commit details
    Browse the repository at this point in the history
  38. feat: ✨MainPageResponse 생성(#5)

    - 각 CityResponse와 CategoryResponse를 List로 필드를 가지기 위해 Dto 생성
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    f742c2f View commit details
    Browse the repository at this point in the history
  39. style: 🎨코드 포맷팅 수정(#5)

    - 코드를 좀더 깔끔하게 하기 위해 포멧팅 수정
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    6d54770 View commit details
    Browse the repository at this point in the history
  40. feat: 🔧MainPageResponse에 정적팩토리 메소드 추가(#5)

    - 게터를 dto 안에서 해주기 위해 정적 팩토리 메소드 추가
    95degree committed May 21, 2021
    Configuration menu
    Copy the full SHA
    5c8934b View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    fdf1c1c View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    a1c411c View commit details
    Browse the repository at this point in the history
  43. Merge pull request #18 from swing-park/feat-be-mainPage

    [BE] 메인페이지 API
    95degree authored May 21, 2021
    Configuration menu
    Copy the full SHA
    0d44dc2 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2021

  1. Configuration menu
    Copy the full SHA
    de1a3ac View commit details
    Browse the repository at this point in the history
  2. feat: ✨Location 클래스 생성(#20)

    위도 경도를 객체로 묶기 위해 Location 클래스 생성
    95degree committed May 24, 2021
    Configuration menu
    Copy the full SHA
    29adca8 View commit details
    Browse the repository at this point in the history
  3. feat: ✨위도 경도 계산 메소드 생성(#20)

    어떤 위치의 위도 경도가 주어졌을때 나와 그 위치 사이의 소요시간을 계산
    95degree committed May 24, 2021
    Configuration menu
    Copy the full SHA
    d22f318 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0fd316e View commit details
    Browse the repository at this point in the history
  5. feat: ✨RoomSearchRequest 생성(#21)

    숙소 검색을 할때 클라이언트가 요청 할 Dto 생성
    95degree committed May 24, 2021
    Configuration menu
    Copy the full SHA
    b13c65c View commit details
    Browse the repository at this point in the history
  6. feat: ✨RoomSearchRequest 생성(#21)

    숙소 검색을 할때 클라이언트가 요청 할 Dto 생성
    95degree committed May 24, 2021
    Configuration menu
    Copy the full SHA
    19d156e View commit details
    Browse the repository at this point in the history
  7. feat: ✨RoomSearchRequest 생성(#21)

    숙소 검색을 할때 클라이언트가 요청 할 Dto 생성
    95degree committed May 24, 2021
    Configuration menu
    Copy the full SHA
    b14dca7 View commit details
    Browse the repository at this point in the history
  8. feat: ✨RoomSearchRequest 생성(#21)

    숙소 검색을 할때 클라이언트가 요청 할 Dto 생성
    95degree committed May 24, 2021
    Configuration menu
    Copy the full SHA
    d3f3d31 View commit details
    Browse the repository at this point in the history
  9. feat: ✨RoomsResponse 생성(#21)

    숙소 검색을 할때 클라이언트에게 응답할 Dto 생성
    95degree committed May 24, 2021
    Configuration menu
    Copy the full SHA
    6d266c7 View commit details
    Browse the repository at this point in the history
  10. feat: ✨RoomsResponseWrapper 생성(#21)

    숙소 검색을 할때 클라이언트에게 응답할 Dto를 감싸줄 Wrapper클래스 생성
    95degree committed May 24, 2021
    Configuration menu
    Copy the full SHA
    e7547fd View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    aadac51 View commit details
    Browse the repository at this point in the history
  12. wip: ⚙Room domain 생성(#21)

    - detail,tax가 객체로 묶여있음
    95degree committed May 24, 2021
    Configuration menu
    Copy the full SHA
    fcdd8f0 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2021

  1. feat:✨RoomResponse 생성(#21)

    - 숙소 정보가 담긴 dto
    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    314a283 View commit details
    Browse the repository at this point in the history
  2. feat:✨RoomResponse 생성(#21)

    - 숙소 정보가 담긴 dto
    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    e7a56d9 View commit details
    Browse the repository at this point in the history
  3. feat:✨RoomResponseWrapper 생성(#21)

    - 숙소 정보가 담긴 RoomResponse를 감싸는 Wrapper 생성
    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    c46ecdf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bdbf359 View commit details
    Browse the repository at this point in the history
  5. feat : ✨RoomMapper 생성(#21)

    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    f9ca665 View commit details
    Browse the repository at this point in the history
  6. feat : ✨RoomDetail 생성(#21)

    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    6f7bc85 View commit details
    Browse the repository at this point in the history
  7. feat : ✨Tax 생성(#21)

    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    a75fd29 View commit details
    Browse the repository at this point in the history
  8. feat : ✨RoomDao 생성(#21)

    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    9f256d1 View commit details
    Browse the repository at this point in the history
  9. feat : ✨Room 빌더 생성(#21)

    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    6f01cf7 View commit details
    Browse the repository at this point in the history
  10. feat : ✨findByRoomId 메소드 생성(#21)

    - RoomId로 방과 관련된 이미지 List를 가져온다.
    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    ef0fa89 View commit details
    Browse the repository at this point in the history
  11. feat : ✨findAll 메소드 생성(#21)

    - 저장된 모든 숙소의 정보를 가져오기 위해 findAll 메소드 생성
    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    18c9c6c View commit details
    Browse the repository at this point in the history
  12. chore : 🔧wiFi -> wifi로 변경(#21)

    - db의 컬러명과 같아야 하기 때문에 wifi로 변경
    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    daf8992 View commit details
    Browse the repository at this point in the history
  13. feat: ✨RoomService(#21)

    - Room과 관련된 비지니스 로직을 처리하기 위해 RoomService 생성
    95degree committed May 25, 2021
    Configuration menu
    Copy the full SHA
    7784c49 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    d1cc8f6 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    645d059 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2021

  1. chore: 🔧for each 문 스트림으로 변경(#21)

    - 일일이 add로 넣어줄때 생길수 있는 사이드 이펙트 방지를 위해 stream으로 변경
    95degree committed May 26, 2021
    Configuration menu
    Copy the full SHA
    0f1c5e4 View commit details
    Browse the repository at this point in the history
  2. chore: 🔧모든 숙소의 가격 GET API (#21)

    - findAll()로 모든 숙소를 가져와 Price를 오름차순으로 정렬해서 보여준다.
    95degree committed May 26, 2021
    Configuration menu
    Copy the full SHA
    05dc4d7 View commit details
    Browse the repository at this point in the history
  3. chore: 🔧서버에서 정렬을 하도록 변경 (#21)

    - db에서 정렬된 상태를 받아오는 것이 아니라 서버에서 정렬을 하도록 로직을 변경
    95degree committed May 26, 2021
    Configuration menu
    Copy the full SHA
    429d2b1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f9eb0dd View commit details
    Browse the repository at this point in the history
  5. feat: ✨ 스케쥴과 도시정보를 넘겨줄 PriceRequest 생성(#21)

    - 도시 Id와 스케쥴을 클라이언트에서 받기 위해 Dto생성
    95degree committed May 26, 2021
    Configuration menu
    Copy the full SHA
    eb9a85b View commit details
    Browse the repository at this point in the history
  6. feat: ✨ 스케쥴과 도시정보를 넘겨줄 PriceRequest 생성(#21)

    - 도시 Id와 스케쥴을 클라이언트에서 받기 위해 Dto생성
    95degree committed May 26, 2021
    Configuration menu
    Copy the full SHA
    ce980f8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    84a0ccd View commit details
    Browse the repository at this point in the history

Commits on May 27, 2021

  1. Configuration menu
    Copy the full SHA
    27a0c66 View commit details
    Browse the repository at this point in the history
  2. feat: ✨유저에 검색에 따른 숙소 조회 API 생성(#21)

    - 가격 범위
    - 최대 인원
    - 도시
    - 체크인 체크아웃
    95degree committed May 27, 2021
    Configuration menu
    Copy the full SHA
    0b544cd View commit details
    Browse the repository at this point in the history
  3. feat: ✨유저에 검색에 따른 숙소 조회 API 생성(#21)

    - 가격 범위
    - 최대 인원
    - 도시
    - 체크인 체크아웃
    95degree committed May 27, 2021
    Configuration menu
    Copy the full SHA
    de64080 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    badc1fe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    12e6e55 View commit details
    Browse the repository at this point in the history
  6. feat: ✨CORS 설정(#21)

    - GET , POST만 접근 가능
    95degree committed May 27, 2021
    Configuration menu
    Copy the full SHA
    34de3da View commit details
    Browse the repository at this point in the history
  7. chore: 🔧 필드 명 변경(#21)

    - 최대 인원이 아닌 예약 인원을 받으므로 maxPeopleCount에서 resrvationPeopleCount으로 변경
    95degree committed May 27, 2021
    Configuration menu
    Copy the full SHA
    e50717f View commit details
    Browse the repository at this point in the history

Commits on May 28, 2021

  1. chore: 🔧 메인 이미지 url 받아오는 부분 변경(#21)

    - 스트림 findFirst로 메인 이미지 url을 찾아오도록 로직을 변경
    95degree committed May 28, 2021
    Configuration menu
    Copy the full SHA
    7374be7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #32 from swing-park/feature-be-search

    [BE] 숙소 조회 및 가격 조회 API
    95degree authored May 28, 2021
    Configuration menu
    Copy the full SHA
    5203b01 View commit details
    Browse the repository at this point in the history