Skip to content

Commit

Permalink
Merge branch 'develop' into fix/IDLE-454
Browse files Browse the repository at this point in the history
  • Loading branch information
wonjunYou authored Oct 22, 2024
2 parents 479d1f2 + 46adb7c commit 07381bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class NotificationFacadeService(
private val notificationDetailsConverter: NotificationDetailsConverter,
) {

@Transactional
fun readNotification(notificationId: UUID) {
val notification = notificationService.getById(notificationId)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class NotificationQueryRepository(
.and(next?.let { notification.id.goe(it) })
.and(notification.entityStatus.eq(EntityStatus.ACTIVE))
)
.orderBy(notification.createdAt.desc())
.orderBy(notification.id.desc())
.limit(limit)
.fetch()
}
Expand Down

0 comments on commit 07381bb

Please sign in to comment.