Skip to content

Commit

Permalink
Merge pull request #110 from SWM-Flash/integration
Browse files Browse the repository at this point in the history
Integration
  • Loading branch information
wonyangs authored Dec 10, 2024
2 parents 0b12ad3 + a171938 commit f9a103f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public DetailSolutionDto findDetailSolutionById(final Long solutionId) {
queryProblem.difficultyName, solutionComment.count(),
solution.solutionDetail.perceivedDifficulty,
solution.solutionDetail.thumbnailImageUrl, queryProblem.holdColorCode,
solution.solutionDetail.solvedDate,
queryProblem.removalDate, queryProblem.settingDate, solution.createdAt
))
.from(solution)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

public record DetailSolutionDto(Long solutionId, String videoUrl, String gymName, String sectorName,
String review, String difficultyName, Long commentsCount, PerceivedDifficulty perceivedDifficulty,
String thumbnailImageUrl, String holdColorCode,
String thumbnailImageUrl, String holdColorCode, LocalDate solvedDate,
LocalDate removalDate, LocalDate settingDate, LocalDateTime uploadedAt) {
}

0 comments on commit f9a103f

Please sign in to comment.