We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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, } ]
The text was updated successfully, but these errors were encountered:
✨ Change: sorting criteria for ski resort query (by ID → by opening d…
9f3c116
…ate) #25
Merge pull request #26 from Nexters/feature/25-change-resort-sorting
45da12b
[#25] 스키장 전체 조회 시 개장일 빠른 순서로 정렬 기준 변경
jun108059
No branches or pull requests
개요
App UX 개선을 위해 스키장 목록 조회 시 개장일이 빠른 순서로 정렬 기준을 변경합니다.
변경 내용
AS-IS
TO-BE
The text was updated successfully, but these errors were encountered: