test #247

Merged
klaus merged 9 commits from test into main 2024-12-17 13:43:45 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 330e4945e1 - Show all commits

View File

@ -92,7 +92,9 @@ class AudioContentPlaylistService(
}
fun getPlaylists(member: Member): GetPlaylistsResponse {
val playlists = redisRepository.findByMemberId(memberId = member.id!!)
val playlists = redisRepository
.findByMemberId(memberId = member.id!!)
.sortedByDescending { it.createdAt }
return GetPlaylistsResponse(
totalCount = playlists.size,