Skip to content

Commit

Permalink
Merge pull request #89 from oduck-team/feature/88
Browse files Browse the repository at this point in the history
�검색 수정 #88
  • Loading branch information
jaycobcoder authored Nov 6, 2023
2 parents 1ad0bfa + cbee6b9 commit 231b592
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/oduck/api/domain/anime/dto/AnimeReq.java
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ public static class PatchSeriesIdReq{
@Getter
@AllArgsConstructor
public enum Sort {
LATEST("createdAt"),
LATEST("title"),
REVIEW_COUNT("reviewCount"),
SCORE("score");
SCORE("starRatingScoreTotal");

private final String sort;
}
Expand Down
8 changes: 4 additions & 4 deletions src/test/java/io/oduck/api/e2e/anime/AnimeControllerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ void getAnimes() throws Exception {
parameterWithName("sort")
.attributes(field("constraints", "LATEST, REVIEW_COUNT, SCORE"))
.optional()
.description("정렬 기준"),
.description("정렬 기준이다. LATEST, REVIEW_COUNT, SCORE만 허용한다."),
parameterWithName("direction")
.attributes(field("constraints", "ASC, DESC"))
.optional()
.description("정렬 방향"),
.description("정렬 방향이다. ASC, DESC만 허용한다."),
parameterWithName("genreIds")
.attributes(field("constraints", "장르 아이디 리스트"))
.optional()
Expand All @@ -98,15 +98,15 @@ void getAnimes() throws Exception {
parameterWithName("statuses")
.attributes(field("constraints", "Status의 리스트 ONGOING, FINISHED, UPCOMING, UNKNOWN"))
.optional()
.description("Status의 리스트 ONGOING, FINISHED, UPCOMING, UNKNOWN"),
.description("status의 리스트. ONGOING, FINISHED, UPCOMING, UNKNOWN"),
parameterWithName("episodeCounts")
.attributes(field("constraints", "EpisodeCountEnum의 리스트. UNDER_TWELVE, UNDER_TWENTY_FOUR, UNDER_FORTY_EIGHT, UNDER_HUNDRED, OVER_HUNDRED를 허용"))
.optional()
.description("EpisodeCountEnum의 리스트. UNDER_TWELVE, UNDER_TWENTY_FOUR, UNDER_FORTY_EIGHT, UNDER_HUNDRED, OVER_HUNDRED를 허용"),
parameterWithName("years")
.attributes(field("constraints", "년도의 리스트. 현재 년도는 내부 로직으로 걸러집니다."))
.optional()
.description("년도 리스트"),
.description("년도의 리스트. 현재 년도는 내부 로직으로 걸러집니다."),
parameterWithName("quarters")
.attributes(field("constraints", "Quarter의 리스트. Quarters가 null이거나 empty하지 않으면 자동으로 <최신 년도+분기>로 예상하고 로직을 수행합니다. 예를 들어 2023년에 클라이언트가 Q1으로 요청하면, 서버에 Q1만 보내도 자동으로 2023년은 내부 로직으로 계산합니다."))
.optional()
Expand Down

0 comments on commit 231b592

Please sign in to comment.