Compare commits
No commits in common. "9f707225212793bab189c5bb89238cd134aad06c" and "52fae596fa5ef64804631a8b194777eb4b3a4239" have entirely different histories.
9f70722521
...
52fae596fa
|
@ -74,17 +74,15 @@ class ExplorerService(
|
||||||
val lastSunday = lastMonday
|
val lastSunday = lastMonday
|
||||||
.plusDays(6)
|
.plusDays(6)
|
||||||
|
|
||||||
val startDateFormatter = DateTimeFormatter.ofPattern("yyyy년 MM월 dd일")
|
val formatter = DateTimeFormatter.ofPattern("MM월 dd일")
|
||||||
val endDateFormatter = DateTimeFormatter.ofPattern("MM월 dd일")
|
val formattedLastMonday = lastMonday.format(formatter)
|
||||||
|
val formattedLastSunday = lastSunday.format(formatter)
|
||||||
val formattedLastMonday = lastMonday.format(startDateFormatter)
|
|
||||||
val formattedLastSunday = lastSunday.format(endDateFormatter)
|
|
||||||
|
|
||||||
val creatorRankingSection = GetExplorerSectionResponse(
|
val creatorRankingSection = GetExplorerSectionResponse(
|
||||||
title = "인기 크리에이터",
|
title = "인기 크리에이터",
|
||||||
coloredTitle = "인기",
|
coloredTitle = "인기",
|
||||||
color = "FF5C49",
|
color = "FF5C49",
|
||||||
desc = "$formattedLastMonday ~ $formattedLastSunday",
|
desc = "$formattedLastMonday~$formattedLastSunday\n※ 인기 크리에이터의 순위는 매주 업데이트 됩니다.",
|
||||||
creators = creatorRankings
|
creators = creatorRankings
|
||||||
)
|
)
|
||||||
sections.add(creatorRankingSection)
|
sections.add(creatorRankingSection)
|
||||||
|
|
Loading…
Reference in New Issue