diff --git a/src/main/kotlin/com/yapp/web2/domain/bookmark/entity/Bookmark.kt b/src/main/kotlin/com/yapp/web2/domain/bookmark/entity/Bookmark.kt index 1b0e9d40..a08592bd 100644 --- a/src/main/kotlin/com/yapp/web2/domain/bookmark/entity/Bookmark.kt +++ b/src/main/kotlin/com/yapp/web2/domain/bookmark/entity/Bookmark.kt @@ -119,6 +119,10 @@ class Bookmark( remindList.remove(Remind(userId)) } + fun remindOff() { + remindList = mutableListOf() + } + fun remindOn(remind: Remind) { remindList.add(remind) }