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

스키장 전체 조회 시 개장일 빠른 순서로 정렬 기준 변경 #25

Open
jun108059 opened this issue Nov 18, 2024 · 0 comments
Assignees
Labels
api External API feature enhancement New feature or request
Milestone

Comments

@jun108059
Copy link
Member

개요

App UX 개선을 위해 스키장 목록 조회 시 개장일이 빠른 순서로 정렬 기준을 변경합니다.

변경 내용

AS-IS

[
  {
    "resortId": 1,
    "name": "지산 리조트",
    "status": "예정",
    "openSlopes": 0,
    },
// 2, 3, 4, ... 생략
  {
    "resortId": 11,
    "name": "오투리조트",
    "status": "예정",
    "openSlopes": 0,
  }
]

TO-BE

[
  {
    "resortId": 6,
    "name": "휘닉스파크",
    "status": "예정",
    "openingDate": "2024-11-22",
    "closingDate": "미정",
    "openSlopes": 0,
  },
// openingDate 빠른 순서로 정렬
  {
    "resortId": 8,
    "name": "용평스키장 모나",
    "status": "예정",
    "openingDate": "2024-11-22",
    "closingDate": "미정",
    "openSlopes": 0,
  }
]
@jun108059 jun108059 added enhancement New feature or request api External API feature labels Nov 18, 2024
@jun108059 jun108059 added this to the Phase1-mvp milestone Nov 18, 2024
@jun108059 jun108059 self-assigned this Nov 18, 2024
jun108059 added a commit that referenced this issue Nov 18, 2024
[#25] 스키장 전체 조회 시 개장일 빠른 순서로 정렬 기준 변경
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api External API feature enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant