redis cache manager - serializeKeysWith 추가

This commit is contained in:
Klaus 2023-11-02 03:25:15 +09:00
parent b3d66151bc
commit d3b12eeef1
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ class AudioContentController(private val service: AudioContentService) {
@GetMapping("/ranking")
fun getAudioContentRanking(
@AuthenticationPrincipal(expression = "#this == 'anonymousUser' ? null : member") member: Member?,
@RequestParam("sortType") sortType: String,
@RequestParam("sortType", required = false) sortType: String = "매출",
pageable: Pageable
) = run {
if (member == null) throw SodaException("로그인 정보를 확인해주세요.")