Skip to content

Commit

Permalink
fix: 알림 문구 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DongGeon0908 committed Aug 18, 2024
1 parent c1b4ce2 commit 4b49b40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ class HeroStatisticsJob(
val formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")

val message = """
$title
- targetDate: ${fromDate.format(formatter)} ~ ${toDate.format(formatter)}
$title [${fromDate.format(formatter)} ~ ${toDate.format(formatter)}]
그룹
- 그룹 생성수 : $groupCount
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class HeroStatisticsScheduler(
val fromDate = LocalDateTime.now().minusHours(1)

heroStatisticsJob.sendHeroStatistics(
title = "극락통계 1시간 단위 [$fromDate ~ $toDate]",
title = "극락통계 1시간 단위",
fromDate = fromDate,
toDate = toDate
)
Expand All @@ -34,7 +34,7 @@ class HeroStatisticsScheduler(
val fromDate = LocalDateTime.now().minusDays(1)

heroStatisticsJob.sendHeroStatistics(
title = "극락통계 1일 단위 [$fromDate ~ $toDate]",
title = "극락통계 1일 단위",
fromDate = fromDate,
toDate = toDate
)
Expand Down

0 comments on commit 4b49b40

Please sign in to comment.