Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class OverdueTaskStatusUpdateScheduler(
scheduledTimeForPushNotification.atZone(ZoneId.systemDefault()).toInstant(),
)

logger.info("Task(${task.id}) 회고 푸시 알림 등록 완료: 예정 실행 시간 = $scheduledTime")
logger.info("Task(${task.id}) 회고 푸시 알림 등록 완료: 예정 실행 시간 = $scheduledTimeForPushNotification")
}

private fun checkRetrospectionAndSendPushNotification(taskId: Long) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ class TaskService(
* 2. 마감 24시간 전(3)
* 3. 1시간 전(4)
*/
@Transactional
fun requestSupportNotifications(
taskId: Long,
memberId: Long,
Expand Down Expand Up @@ -458,6 +459,7 @@ class TaskService(
}

// 몰입이 완료되면 등록된 푸시알림 비활성화
@Transactional
fun inactiveSupportNotifications(
taskId: Long,
memberId: Long,
Expand Down
Loading