Compare commits

..

No commits in common. "827333108d9e27f5dd19646a1f26923db796806b" and "587b90bd271b261a8c1a3f4ef8d160dfb85a1d35" have entirely different histories.

4 changed files with 13 additions and 7 deletions

View File

@ -29,7 +29,8 @@ class AudioContentMainService(
fun getThemeList(isAdult: Boolean): List<String> {
return audioContentThemeRepository.getActiveThemeOfContent(isAdult = isAdult)
.filter {
it != "모닝콜" &&
it != "오디오북" &&
it != "모닝콜" &&
it != "알람" &&
it != "슬립콜" &&
it != "다시듣기" &&
@ -75,7 +76,8 @@ class AudioContentMainService(
val themeList = if (theme.isBlank()) {
audioContentThemeRepository.getActiveThemeOfContent(isAdult = isAdult, isFree = isFree)
.filter {
it != "모닝콜" &&
it != "오디오북" &&
it != "모닝콜" &&
it != "알람" &&
it != "슬립콜" &&
it != "다시듣기" &&

View File

@ -43,7 +43,8 @@ class AudioContentMainTabContentService(
// 새로운 단편 테마
val themeOfContentList = audioContentThemeRepository.getActiveThemeOfContent(isAdult = isAdult)
.filter {
it != "모닝콜" &&
it != "오디오북" &&
it != "모닝콜" &&
it != "알람" &&
it != "슬립콜" &&
it != "다시듣기" &&
@ -171,7 +172,8 @@ class AudioContentMainTabContentService(
val themeList = if (theme.isBlank()) {
audioContentThemeRepository.getActiveThemeOfContent(isAdult = isAdult)
.filter {
it != "모닝콜" &&
it != "오디오북" &&
it != "모닝콜" &&
it != "알람" &&
it != "슬립콜" &&
it != "다시듣기" &&

View File

@ -56,7 +56,8 @@ class AudioContentMainTabFreeService(
val themeList = audioContentThemeRepository.getActiveThemeOfContent(isAdult = isAdult, isFree = true)
.filter {
it != "모닝콜" &&
it != "오디오북" &&
it != "모닝콜" &&
it != "알람" &&
it != "슬립콜" &&
it != "다시듣기" &&
@ -156,7 +157,8 @@ class AudioContentMainTabFreeService(
isFree = true
)
.filter {
it != "모닝콜" &&
it != "오디오북" &&
it != "모닝콜" &&
it != "알람" &&
it != "슬립콜" &&
it != "다시듣기" &&

View File

@ -52,7 +52,7 @@ data class Order(
override fun prePersist() {
super.prePersist()
if (type == OrderType.RENTAL) {
endDate = startDate.plusDays(5)
endDate = startDate.plusDays(15)
}
}
}