Skip to content

Commit

Permalink
๐Ÿ”€ :: (#77) millisecond ์‚ญ์ œ (#226)
Browse files Browse the repository at this point in the history
* โ™ป๏ธ :: millisecond ์‚ญ์ œ

* โ™ป๏ธ :: DB ์ €์žฅํ•  ๋•Œ millisecond ์‚ญ์ œ
  • Loading branch information
jyk1029 authored Jun 1, 2023
1 parent 90afde2 commit ccb198c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class NotificationDetailApiImpl(
Detail(
title = category.title,
content = content,
sentAt = LocalDateTime.now(),
sentAt = LocalDateTime.now().withNano(0),
isRead = false,
userId = it,
categoryId = category.id,
Expand Down Expand Up @@ -78,7 +78,7 @@ class NotificationDetailApiImpl(
Detail(
title = category.title,
content = content,
sentAt = LocalDateTime.now(),
sentAt = LocalDateTime.now().withNano(0),
isRead = false,
userId = userId,
categoryId = category.id,
Expand Down

0 comments on commit ccb198c

Please sign in to comment.