Skip to content

Commit

Permalink
Merge pull request #119 from KopisKoala/feature/118
Browse files Browse the repository at this point in the history
[#118] 홈 화면 검색 결과에 공연 상태 반환
  • Loading branch information
ParkSangsin authored Aug 27, 2024
2 parents 0b713e7 + 1242bc2 commit fdfe939
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public static HomeSearchPerformanceResDto homeSearchPerformanceResDto(Performanc
.id(performance.getId())
.title(performance.getTitle())
.poster(performance.getPoster())
.state(performance.getState())
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ public static class HomeSearchPerformanceResDto {

@Schema(description = "공연 포스터")
private String poster;

@Schema(description = "공연 상태")
private String state;
}

@Schema(description = "HomeSearchPerformanceListResDto")
Expand Down

0 comments on commit fdfe939

Please sign in to comment.