Skip to content

Commit

Permalink
Merge pull request #113 from EFUB4-Jukebox/develop
Browse files Browse the repository at this point in the history
[Deploy] 배포 v0.4.2 - 플레이리스트 상세정보에 pinCount 추가
  • Loading branch information
seohyun-lee authored Jul 29, 2024
2 parents 94340ad + a825946 commit 7f74c0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/sws/songpin/domain/genre/entity/GenreName.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

public enum GenreName {
POP, // 팝
ROCK, // 락&메탈
ROCK, // 록/메탈
BALLAD, // 발라드
JAZZ, // 재즈
HIPHOP, // 힙합
LOFI, // 로파이
LOFI, // Lo-Fi
DANCE, // 댄스
EXTRA // 나머지
;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public record PlaylistDetailsResponseDto(
String playlistName,
Long creatorId,
String creatorNickname,
int pinCount,
LocalDate updatedDate,
Visibility visibility,
List<String> imgPathList,
Expand All @@ -23,6 +24,7 @@ public static PlaylistDetailsResponseDto from(Playlist playlist, List<String> im
playlist.getPlaylistName(),
playlist.getCreator().getMemberId(),
playlist.getCreator().getNickname(),
pinList.size(),
playlist.getModifiedTime().toLocalDate(),
playlist.getVisibility(),
imgPathList,
Expand Down

0 comments on commit 7f74c0d

Please sign in to comment.