core: add collection for reminders

This commit is contained in:
Abdullah Atta
2022-11-17 13:57:58 +05:00
committed by Abdullah Atta
parent 657fe05464
commit a8f1fbf6a1
6 changed files with 122 additions and 0 deletions

View File

@@ -46,6 +46,10 @@ class Merger {
get: (id) => this._db.shortcuts.shortcut(id),
set: (item) => this._db.shortcuts.merge(item)
},
reminder: {
get: (id) => this._db.reminders.reminder(id),
set: (item) => this._db.reminders.merge(item)
},
notebook: {
threshold: 1000,
get: (id) => this._db.notebooks.notebook(id),