diff --git a/application/src/main/kotlin/com/pokit/content/port/service/ContentService.kt b/application/src/main/kotlin/com/pokit/content/port/service/ContentService.kt index 802d9114..fd4c2c58 100644 --- a/application/src/main/kotlin/com/pokit/content/port/service/ContentService.kt +++ b/application/src/main/kotlin/com/pokit/content/port/service/ContentService.kt @@ -90,6 +90,7 @@ class ContentService( @Transactional override fun delete(user: User, contentId: Long) { val content = verifyContent(user.id, contentId) + bookMarkPort.delete(user.id, contentId) contentPort.delete(content) }